summaryrefslogtreecommitdiff
path: root/src/include/cctk_GNU.h
blob: 1a8482700b7497751f337e2b0b2a28a7ea01f4a8 (plain)
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
 /*@@
   @header    cctk_GNU.h
   @date      Tue Feb 15 16:37:50 2000
   @author    Tom Goodale
   @desc 
   Includes various gnu header files
   @enddesc 
   @version $Header$
 @@*/

#ifndef _CCTK_GNU_H_
#define _CCTK_GNU_H_ 1

#include "cctk_Config.h"

#ifdef HAVE_GETOPT_H
#ifdef HAVE_GETOPT_LONG_ONLY
#include <getopt.h>
#else
#include "../gnu/getopt.h"
#endif
#else
#include "../gnu/getopt.h"
#endif

#ifdef HAVE_REGEX_H
#include <regex.h>
#else
#include "../gnu/regex.h"
#endif

#endif /* _CCTK_GNU_H_ */