Changeset 1505 for trunk/src/emx/include/unistd.h
- Timestamp:
- Sep 12, 2004, 9:40:29 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/unistd.h
-
Property cvs2svn:cvs-rev
changed from
1.16
to1.17
r1504 r1505 178 178 unsigned int alarm(unsigned int); 179 179 int chdir(const char *); 180 /** @todo int chown(const char *, uid_t, gid_t); */ 180 int chown(const char *, uid_t, gid_t); 181 181 int close(int); 182 182 char * cuserid(char *); /* bird: emx/todo/obosolete? */ … … 203 203 uid_t getuid(void); 204 204 int isatty(int); 205 /** @todo int link(const char *, const char *);*/ 205 int link(const char *, const char *); 206 206 #ifndef _LSEEK_DECLARED 207 207 #define _LSEEK_DECLARED … … 255 255 /* 1003.1-2001 */ 256 256 #if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE 257 /** @todo int fchown(int, uid_t, gid_t); */ 258 /** @todo int readlink(const char *, char *, int); */ 257 int fchown(int, uid_t, gid_t); 258 int readlink(const char *, char *, int); 259 259 #endif 260 260 #if __POSIX_VISIBLE >= 200112 … … 270 270 */ 271 271 #if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE >= 402 || __BSD_VISIBLE 272 /** @todo int symlink(const char * __restrict, const char * __restrict); */ 272 int symlink(const char * __restrict, const char * __restrict); 273 273 #endif 274 274 … … 283 283 /** @todo int getsid(pid_t _pid); */ 284 284 char *getwd(char *); /* LEGACY: obsoleted by getcwd() */ 285 /** @todo int lchown(const char *, uid_t, gid_t); */ 285 int lchown(const char *, uid_t, gid_t); 286 286 int lockf(int, int, off_t); 287 287 /** @todo int nice(int); */ … … 292 292 /** @todo int setreuid(uid_t, uid_t); */ 293 293 /* void swab(const void * __restrict, void * __restrict, ssize_t); */ 294 /** @todo void sync(void); */ 294 void sync(void); 295 295 /** @todo useconds_t ualarm(useconds_t, useconds_t); */ 296 296 int usleep(useconds_t); … … 325 325 /** @todo int des_cipher(const char *, char *, long, int); */ 326 326 /** @todo int des_setkey(const char *key); */ 327 /** @todo void endusershell(void); */ 327 void endusershell(void); 328 328 /** @todo int exect(const char *, char * const *, char * const *); */ 329 329 /** @todo char *fflagstostr(u_long); */ … … 334 334 /** @todo int getresgid(gid_t *, gid_t *, gid_t *); */ 335 335 /** @todo int getresuid(uid_t *, uid_t *, uid_t *); */ 336 /** @todo char *getusershell(void); */ 336 char *getusershell(void); 337 337 /** @todo int initgroups(const char *, gid_t); */ 338 338 /** @todo int iruserok(unsigned long, int, const char *, const char *); */ … … 340 340 /** @todo int issetugid(void); */ 341 341 /** @todo char *mkdtemp(char *); */ 342 /** @todo int mknod(const char *, mode_t, dev_t); */ 342 int mknod(const char *, mode_t, dev_t); 343 343 #ifndef _MKSTEMP_DECLARED 344 344 int mkstemp(char *); … … 374 374 #endif 375 375 /** @todo int setdomainname(const char *, int); */ 376 /** @todo int setgroups(int, const gid_t *); */ 376 int setgroups(int, const gid_t *); 377 377 /** @todo void sethostid(long); */ 378 378 /** @todo int sethostname(const char *, int); */ … … 387 387 /** @todo int setrgid(gid_t); */ 388 388 /** @todo int setruid(uid_t); */ 389 /** @todo void setusershell(void); */ 389 void setusershell(void); 390 390 /** @todo int strtofflags(char **, u_long *, u_long *); */ 391 391 /** @todo int swapon(const char *); */ … … 419 419 unsigned int _alarm(unsigned int); 420 420 int _chdir(const char *); 421 /** @todo int _chown(const char *, uid_t, gid_t); */ 421 int _chown(const char *, uid_t, gid_t); 422 422 int _close(int); 423 423 char *_cuserid(char *); 424 424 int _dup(int); 425 425 int _dup2(int, int); 426 /** @todo int _eaccess(const char *, int); */ 426 int _eaccess(const char *, int); 427 427 int _execl(const char *, const char *, ...); 428 428 int _execle(const char *, const char *, ...); … … 444 444 uid_t _getuid(void); 445 445 int _isatty(int); 446 /** @todo int _link(const char *, const char *);*/ 446 int _link(const char *, const char *); 447 447 #ifndef __LSEEK_DECLARED 448 448 #define __LSEEK_DECLARED -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.