Add newline at the end of the files.
This commit is contained in:
@@ -41,4 +41,4 @@ static inline int find_first_non_zero(unsigned long value)
|
||||
if (bit_check(value, i))
|
||||
return i;
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,4 +47,4 @@ typedef struct dirent_t {
|
||||
unsigned short d_reclen; ///< Length of this linux_dirent.
|
||||
unsigned short d_type; ///< type of the directory entry.
|
||||
char d_name[NAME_MAX]; ///< Filename (null-terminated)
|
||||
} dirent_t;
|
||||
} dirent_t;
|
||||
|
||||
@@ -11,4 +11,4 @@
|
||||
/// @param request The device-dependent request code
|
||||
/// @param data An untyped pointer to memory.
|
||||
/// @return Return value depends on REQUEST. Usually -1 indicates error.
|
||||
int ioctl(int fd, unsigned long int request, void *data);
|
||||
int ioctl(int fd, unsigned long int request, void *data);
|
||||
|
||||
+1
-1
@@ -39,4 +39,4 @@ int rmdir(const char *path);
|
||||
/// @return file descriptor number, -1 otherwise and errno is set to indicate the error.
|
||||
/// @details
|
||||
/// It is equivalent to: open(path, O_WRONLY|O_CREAT|O_TRUNC, mode)
|
||||
int creat(const char *path, mode_t mode);
|
||||
int creat(const char *path, mode_t mode);
|
||||
|
||||
@@ -246,4 +246,4 @@ int getdents(int fd, dirent_t *dirp, unsigned int count);
|
||||
/// shall return a non-zero value that is the number of seconds until the
|
||||
/// previous request would have generated a SIGALRM signal. Otherwise, alarm()
|
||||
/// shall return 0.
|
||||
int alarm(int seconds);
|
||||
int alarm(int seconds);
|
||||
|
||||
Reference in New Issue
Block a user