Ticket #5784: header.patch
File header.patch, 779 bytes (added by , 15 years ago) |
---|
-
posix/sys/statvfs.h
old new 31 31 extern "C" { 32 32 #endif 33 33 34 int statvfs(const char * path, struct statvfs *statvfs);35 int fstatvfs(int fd, struct statvfs *statvfs);34 int statvfs(const char *, struct statvfs *); 35 int fstatvfs(int, struct statvfs *); 36 36 37 37 #ifdef __cplusplus 38 38 } -
posix/net/if.h
old new 93 93 #endif 94 94 95 95 unsigned if_nametoindex(const char *name); 96 char *if_indextoname(unsigned index, char *nameBuffer);96 char *if_indextoname(unsigned, char *nameBuffer); 97 97 struct if_nameindex *if_nameindex(void); 98 98 void if_freenameindex(struct if_nameindex *interfaceArray); 99 99