aboutsummaryrefslogtreecommitdiff
path: root/src/include/plibc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/plibc.h')
-rw-r--r--src/include/plibc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/plibc.h b/src/include/plibc.h
index 6d02323aa..dd880eebf 100644
--- a/src/include/plibc.h
+++ b/src/include/plibc.h
@@ -379,7 +379,7 @@ int _win_access( const char *path, int mode );
379int _win_chmod(const char *filename, int pmode); 379int _win_chmod(const char *filename, int pmode);
380char *realpath(const char *file_name, char *resolved_name); 380char *realpath(const char *file_name, char *resolved_name);
381long _win_random(void); 381long _win_random(void);
382void _win_srandom(unsigned seed); 382void _win_srandom(unsigned int seed);
383int _win_remove(const char *path); 383int _win_remove(const char *path);
384int _win_rename(const char *oldname, const char *newname); 384int _win_rename(const char *oldname, const char *newname);
385int _win_stat(const char *path, struct stat *buffer); 385int _win_stat(const char *path, struct stat *buffer);
@@ -572,7 +572,7 @@ size_t strnlen (const char *str, size_t maxlen);
572 #define CHMOD(f, p) _win_chmod(f, p) 572 #define CHMOD(f, p) _win_chmod(f, p)
573 #define PIPE(h) _win_pipe(h) 573 #define PIPE(h) _win_pipe(h)
574 #define RANDOM() _win_random() 574 #define RANDOM() _win_random()
575 #define SRANDOM(s) _win_srandom() 575 #define SRANDOM(s) _win_srandom(s)
576 #define REMOVE(p) _win_remove(p) 576 #define REMOVE(p) _win_remove(p)
577 #define RENAME(o, n) _win_rename(o, n) 577 #define RENAME(o, n) _win_rename(o, n)
578 #define STAT(p, b) _win_stat(p, b) 578 #define STAT(p, b) _win_stat(p, b)