diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-08-02 18:56:34 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-08-02 18:56:34 +0000 |
commit | 403fe50cdc15da44c6523b4a31277970e50ca618 (patch) | |
tree | 33cf6bf6375c59f029d00031fe2f845aa3a789eb | |
parent | e3fb5d9a69ee26c4a7a1c749911925cfb13beadf (diff) |
sys/types.h is explicitly needed on Mac OS X 10.3; it shouldn't hurt on any of the other UNIXes
svn path=/trunk/externals/hcs/; revision=5461
-rw-r--r-- | group.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -33,13 +33,14 @@ #include <stdio.h> #include <lm.h> #else +#include <sys/types.h> #include <stdlib.h> #include <grp.h> #endif #include <string.h> -static char *version = "$Revision: 1.2 $"; +static char *version = "$Revision: 1.3 $"; t_int group_instance_count; |