Changeset View
Changeset View
Standalone View
Standalone View
include/unistd.h
| Show First 20 Lines • Show All 488 Lines • ▼ Show 20 Lines | |||||
| struct crypt_data { | struct crypt_data { | ||||
| int initialized; /* For compatibility with glibc. */ | int initialized; /* For compatibility with glibc. */ | ||||
| char __buf[256]; /* Buffer returned by crypt_r(). */ | char __buf[256]; /* Buffer returned by crypt_r(). */ | ||||
| }; | }; | ||||
| int acct(const char *); | int acct(const char *); | ||||
| int async_daemon(void); | int async_daemon(void); | ||||
| int check_utility_compat(const char *); | int check_utility_compat(const char *); | ||||
| ssize_t copy_file_range(int, off_t *, int, off_t *, size_t, unsigned int); | |||||
asomers: I think the standard `unsigned` is better than the nonstandard `u_int`. | |||||
Done Inline ActionsAlthough the Linux man pages specifies u_int, I figured unsigned int is fine. rmacklem: Although the Linux man pages specifies u_int, I figured unsigned int is fine.
(I won't bother… | |||||
| const char * | const char * | ||||
| crypt_get_format(void); | crypt_get_format(void); | ||||
| char *crypt_r(const char *, const char *, struct crypt_data *); | char *crypt_r(const char *, const char *, struct crypt_data *); | ||||
| int crypt_set_format(const char *); | int crypt_set_format(const char *); | ||||
| int dup3(int, int, int); | int dup3(int, int, int); | ||||
| int eaccess(const char *, int); | int eaccess(const char *, int); | ||||
| void endusershell(void); | void endusershell(void); | ||||
| int exect(const char *, char * const *, char * const *); | int exect(const char *, char * const *, char * const *); | ||||
| ▲ Show 20 Lines • Show All 93 Lines • Show Last 20 Lines | |||||
I think the standard unsigned is better than the nonstandard u_int.