awips2/ncep/gov.noaa.nws.ncep.viz.rsc.ncgrid/dgdriv_c/geminc.h
Brad Gonzales 632020195a Issue #628 committing PGEN code received from Plummer on 4-19-2012.
Former-commit-id: fda897d2d0 [formerly 253e8bc948] [formerly fda897d2d0 [formerly 253e8bc948] [formerly 295cbf95e5 [formerly 0816cd253c86acc699cb90866131619c4679f631]]]
Former-commit-id: 295cbf95e5
Former-commit-id: 2a3bf4ec32 [formerly ae3d17c698]
Former-commit-id: a610dcde73
2012-05-10 16:50:45 -05:00

59 lines
1.5 KiB
C
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 *
* T. Piper/GSC 5/01 Added strings.h for AIX only *
* T. Piper/SAIC 10/01 Added float.h for Linux 2.4.2 *
* D. Kidwell/NCEP 11/01 Added cond. compile of ipc and msg *
* T. Piper/SAIC 3/03 Removed malloc.h *
* R. Tian/SAIC 10/04 Added pwd.h *
***********************************************************************/
#ifndef _GEMINC_H
#define _GEMINC_H
#include <ctype.h>
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <float.h>
#include <limits.h>
#include <math.h>
#include <pwd.h>
#include <signal.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef AIX
#include <strings.h>
#endif
#include <time.h>
#include <unistd.h>
/*
* The following conditional compile section is required for successful
* compilation of GEMPAK code when using the melbufr library on Linux
* platforms. NO_MSG_IPC is defined as part of BUFRFLAGS for Linux in
* the .cshrc file.
*/
#ifndef NO_MSG_IPC
#include <sys/ipc.h>
#include <sys/msg.h>
#endif
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <Xm/XmAll.h>
#endif /* _GEMINC_H */