1 /*
2 *   $Id: e_vms.h 136 2002-03-08 22:35:19Z darren $
3 *
4 *   Copyright (c) 2002, Darren Hiebert
5 *
6 *   This source code is released for free distribution under the terms of the
7 *   GNU General Public License.
8 *
9 *   Configures ctags for VMS environment.
10 */
11 #ifndef E_VMS_H
12 #define E_VMS_H
13 
14 #define CASE_INSENSITIVE_FILENAMES 1
15 #define HAVE_STDLIB_H 1
16 #define HAVE_TIME_H 1
17 #ifdef VAXC
18 # define HAVE_STAT_H 1
19 # define HAVE_TYPES_H 1
20 #else
21 # define HAVE_FCNTL_H 1
22 # define HAVE_SYS_STAT_H 1
23 # define HAVE_SYS_TYPES_H 1
24 #endif
25 #define HAVE_CLOCK 1
26 #define HAVE_FGETPOS 1
27 #define HAVE_STRERROR 1
28 #define HAVE_STRSTR 1
29 #define HAVE_UNISTD_H 1
30 
31 #endif
32