Changeset b942a66 in mainline


Ignore:
Timestamp:
2017-05-23T15:09:04Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5119d34, aa58e52
Parents:
c7a67c4
Message:

C library should continue to provide C standard rename() and remove().

Location:
uspace/lib/c
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/Makefile

    rc7a67c4 rb942a66  
    146146        generic/adt/prodcons.c \
    147147        generic/time.c \
     148        generic/stdio.c \
    148149        generic/stdlib.c \
    149150        generic/udebug.c \
  • uspace/lib/c/include/stdio.h

    rc7a67c4 rb942a66  
    153153extern void setbuf(FILE *, void *);
    154154
     155/* Misc file functions */
     156extern int rename(const char *, const char *);
     157extern int remove(const char *);
     158
    155159#endif
    156160
Note: See TracChangeset for help on using the changeset viewer.