Ignore:
Timestamp:
2014-09-12T13:22:33Z (10 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9b20126
Parents:
8db09e4 (diff), 105d8d6 (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.
Message:

Merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/include/posix/string.h

    r8db09e4 r15d0046  
    6464 * forward declarations ought to be enough.
    6565 */
    66 /* From str.h. */
    67 extern char * strtok_r(char *, const char *, char **);
    68 extern char * strtok(char *, const char *);
    6966
    7067/* From mem.h */
     
    10198extern char *__POSIX_DEF__(strstr)(const char *haystack, const char *needle);
    10299
     100/* Tokenization functions. */
     101extern char *__POSIX_DEF__(strtok_r)(char *, const char *, char **);
     102extern char *__POSIX_DEF__(strtok)(char *, const char *);
     103
     104
    103105/* Collation Functions */
    104106extern int __POSIX_DEF__(strcoll)(const char *s1, const char *s2);
Note: See TracChangeset for help on using the changeset viewer.