Applied patch from obache, this partially fixes #5784.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38709 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Scott McCreary
2010-09-18 16:34:30 +00:00
parent 6a5dacaa3c
commit 8e19103a0f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ extern "C" {
#endif
unsigned if_nametoindex(const char* name);
char* if_indextoname(unsigned index, char* nameBuffer);
char* if_indextoname(unsigned, char* nameBuffer);
struct if_nameindex* if_nameindex(void);
void if_freenameindex(struct if_nameindex* interfaceArray);
+2 -2
View File
@@ -31,8 +31,8 @@ struct statvfs {
extern "C" {
#endif
int statvfs(const char *path, struct statvfs *statvfs);
int fstatvfs(int fd, struct statvfs *statvfs);
int statvfs(const char *, struct statvfs *);
int fstatvfs(int, struct statvfs *);
#ifdef __cplusplus
}