Changeset b7ee0369 in mainline for uspace/lib/posix/stdio.h
- Timestamp:
- 2011-07-31T05:08:44Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d3e241a
- Parents:
- 051e6ac (diff), 27a8d1d (diff)
 Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
 Use the(diff)links above to see all the changes relative to each parent.
- File:
- 
      - 1 edited
 
 - 
          
  uspace/lib/posix/stdio.h (modified) (2 diffs)
 
Legend:
- Unmodified
- Added
- Removed
- 
      uspace/lib/posix/stdio.hr051e6ac rb7ee0369 116 116 extern int posix_remove(const char *path); 117 117 118 /* Renaming Files */ 119 extern int posix_rename(const char *old, const char *new); 120 118 121 /* Temporary Files */ 119 122 #undef L_tmpnam 120 123 #define L_tmpnam PATH_MAX 121 124 extern char *posix_tmpnam(char *s); 125 extern char *posix_tempnam(const char *dir, const char *pfx); 126 extern FILE *posix_tmpfile(void); 122 127 123 128 #ifndef LIBPOSIX_INTERNAL … … 170 175 #define remove posix_remove 171 176 177 #define rename posix_rename 178 172 179 #define tmpnam posix_tmpnam 180 #define tempnam posix_tempnam 181 #define tmpfile posix_tmpfile 173 182 #endif 174 183 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
