* Added BSD's FD_COPY() macro (it's not POSIX, though).

* Some other minor improvements.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23826 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2008-02-02 17:32:01 +00:00
parent 987de53746
commit b4fd412b3e
4 changed files with 22 additions and 15 deletions
+5 -4
View File
@@ -1,8 +1,9 @@
/*
* Copyright 2004-2008, Haiku Inc. All Rights Reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _GRP_H_
#define _GRP_H_
/*
** Distributed under the terms of the Haiku License.
*/
#include <sys/types.h>
@@ -11,7 +12,7 @@
struct group {
char *gr_name;
char *gr_passwd;
int gr_gid;
gid_t gr_gid;
char **gr_mem;
};