Fixed issue #44.

Removed unnesessary include <sys/types.h> from stdio.h, stdlib.h,
string.h, strings.h and time.h.
This commit is contained in:
Sergey
2015-06-21 18:59:02 -07:00
parent aedd0138b3
commit bca590d42b
10 changed files with 52 additions and 12 deletions

View File

@@ -6,7 +6,6 @@
#include <stdio.h>
#include <string.h>
#include <pwd.h>
#include <grp.h>
#include <syslog.h>
#include <stdlib.h>
#include <unistd.h>
@@ -14,6 +13,7 @@
#include <sys/types.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <grp.h>
char userbuf[64] = "USER=";
char homebuf[128] = "HOME=";

View File

@@ -1,5 +1,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <grp.h>
#define MAXGRP 200