Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/stdio.h

    r823a929 r59f799b  
    3939#include "libc/stdio.h"
    4040#include "sys/types.h"
    41 #include "libc/stdarg.h"
    4241
    4342/* Character Input/Output */
     
    6160/* Formatted Input/Output */
    6261extern int posix_sprintf(char *restrict s, const char *restrict format, ...);
    63 extern int posix_vsprintf(char *restrict s, const char *restrict format, va_list ap);
    6462extern int posix_sscanf(const char *restrict s, const char *restrict format, ...);
    65 
    66 /* Deleting Files */
    67 extern int posix_remove(const char *path);
    68 
    69 /* Temporary Files */
    70 extern char *posix_tmpnam(char *s);
    7163
    7264#ifndef LIBPOSIX_INTERNAL
     
    8173
    8274        #define sprintf posix_sprintf
    83         #define vsprintf posix_vsprintf
    8475        #define sscanf posix_sscanf
    85 
    86         #define remove posix_remove
    87 
    88         #define tmpnam posix_tmpnam
    8976#endif
    9077
Note: See TracChangeset for help on using the changeset viewer.