diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-07-07 19:07:28 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-07-07 19:07:28 +0000 |
commit | 0456702b1708f0e15013b734db812886269edf38 (patch) | |
tree | 41ac049bf624f8d9e86844f583bad5cfe6d5ad28 | |
parent | 9e1623853e8a39ec7c25049c8e159f273e1c2db3 (diff) |
More compiler warning fixes for missing prototypes:XORG-6_99_99_900XORG-6_8_99_903XORG-6_8_99_902XORG-6_8_99_901XORG-6_8_99_900XORG-6_8_99_16XORG-6_8_99_15
Add prototype for XkbSetExtension()
Add #include <ctype.h> for isspace() & isdigit()
Add #include <grp.h> (for initgroups()) and remove extra *
Add prototype for xorgGetVersion()
-rw-r--r-- | helper/helper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helper/helper.c b/helper/helper.c index cd65b07..034019d 100644 --- a/helper/helper.c +++ b/helper/helper.c @@ -34,6 +34,7 @@ The Open Group. #include <stdlib.h> #include <stdio.h> +#include <ctype.h> #include <sys/stat.h> #include <limits.h> /* for MAXHOSTNAMELEN */ /* and in case we didn't get it from the headers above */ |