Changeset 4e6a610 in mainline for uspace/lib/posix/include
- Timestamp:
- 2018-06-25T09:54:28Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bfe90b6
- Parents:
- fb0ec570
- git-author:
- Jiri Svoboda <jiri@…> (2018-06-24 17:51:54)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-06-25 09:54:28)
- Location:
- uspace/lib/posix/include/posix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/include/posix/stdio.h
rfb0ec570 r4e6a610 48 48 extern int fileno(FILE *); 49 49 50 #define P_tmpdir "/tmp" 51 50 52 /* Identifying the Terminal */ 51 53 #undef L_ctermid … … 77 79 78 80 /* Temporary Files */ 79 #undef L_tmpnam80 #define L_tmpnam PATH_MAX81 extern char *tmpnam(char *s);82 81 extern char *tempnam(const char *dir, const char *pfx); 83 extern FILE *tmpfile(void);84 82 85 83 #endif /* POSIX_STDIO_H_ */ -
uspace/lib/posix/include/posix/stdlib.h
rfb0ec570 r4e6a610 58 58 59 59 /* Legacy Declarations */ 60 extern char *mktemp(char *tmpl) ;60 extern char *mktemp(char *tmpl) __attribute__((deprecated)); 61 61 extern int bsd_getloadavg(double loadavg[], int nelem); 62 62
Note:
See TracChangeset
for help on using the changeset viewer.