1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
/* rcsid: $Id: cgiwrap.h,v 1.8 1996/05/31 16:33:59 nneul Exp $ */
#include "config.h" /* Generated by Configure */
#include <stdio.h> /* For passing data into called script */
#include <ctype.h>
#include <sys/stat.h> /* For file stating */
#include <signal.h> /* For signals stuff */
#include <errno.h>
#if defined(I_STDLIB)
#include <stdlib.h> /* Standard library functions */
#endif
#if defined(I_PWD)
#include <pwd.h> /* For getting uids from username */
#endif
#if defined(I_UNISTD)
#include <unistd.h> /* Stuff for setting uid */
#endif
#if defined(I_SYS_TYPES)
#include <sys/types.h> /* Types for uid and stuff */
#endif
#if defined(I_LIMITS)
#include <limits.h> /* Limit on directory length and stuff */
#endif
#if defined(I_STRING) /* string routines */
#include <string.h>
#else
#include <strings.h>
#endif
#if defined(I_SYS_TIME)
#include <sys/time.h> /* Time for logging stuff */
#endif
#if defined(I_SYS_RESOURCE) /* For rlimit use */
#include <sys/resource.h>
#endif
#include <syslog.h>
/*
* Local headers for prototypes and defines
*/
#include "util.h"
#include "debug.h"
#include "fetch.h"
#include "stdutil.h"
|