Former-commit-id:fda897d2d0
[formerly253e8bc948
] [formerlyfda897d2d0
[formerly253e8bc948
] [formerly295cbf95e5
[formerly 0816cd253c86acc699cb90866131619c4679f631]]] Former-commit-id:295cbf95e5
Former-commit-id:2a3bf4ec32
[formerlyae3d17c698
] Former-commit-id:a610dcde73
36 lines
970 B
Text
Executable file
36 lines
970 B
Text
Executable file
/************************************************************************
|
|
* GEMINC.H *
|
|
* *
|
|
* This include file will include all necessary standard C include *
|
|
* files. *
|
|
* *
|
|
** *
|
|
* Log: *
|
|
* S. Jacobs/NMC 6/94 *
|
|
* S. Jacobs/NMC 7/95 Added sys/wait.h, stdarg.h, ctype.h *
|
|
* S. Jacobs/NCEP 11/95 Added sys/time.h *
|
|
* G. Krueger/EAI 3/96 Added limits.h *
|
|
* S. Jacobs/NCEP 6/96 Added sys/select.h *
|
|
***********************************************************************/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <malloc.h>
|
|
#include <math.h>
|
|
#include <time.h>
|
|
#include <sys/time.h>
|
|
#include <errno.h>
|
|
#include <sys/ipc.h>
|
|
#include <sys/msg.h>
|
|
#include <signal.h>
|
|
#include <dirent.h>
|
|
#include <sys/wait.h>
|
|
#include <stdarg.h>
|
|
#include <ctype.h>
|
|
#include <limits.h>
|
|
#include <sys/select.h>
|