File: acconfig.h

package info (click to toggle)
arduino-ctags 5.8-arduino11-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,772 kB
  • sloc: ansic: 35,037; makefile: 132; sh: 23
file content (127 lines) | stat: -rw-r--r-- 3,624 bytes parent folder | download | duplicates (11)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
*   $Id: acconfig.h 318 2003-04-01 05:02:21Z darren $
*
*   Copyright (c) 1998-2003, Darren Hiebert
*
*   This source code is released for free distribution under the terms of the
*   GNU General Public License.
*
*   This module contains input source for generating config.h.in
*/

/*  Package name.
 */
#undef PACKAGE

/*  Package version.
 */
#undef VERSION

/*  Define to the appropriate type if <time.h> does not define this.
 */
#undef clock_t

/*  Define to long if <stdio.h> does not define this.
 */
#undef fpos_t

/*  Define to the appropriate size for tmpnam() if <stdio.h> does not define
 *  this.
 */
#undef L_tmpnam

/*  Define this macro if the field "st_ino" exists in struct stat in
 *  <sys/stat.h>.
 *  */
#undef HAVE_STAT_ST_INO

/*  Define remove to unlink if you have unlink(), but not remove().
 */
#undef remove

/*  Define this value used by fseek() appropriately if <stdio.h>
 *  (or <unistd.h> on SunOS 4.1.x) does not define them.
 */
#undef SEEK_SET

/*  Define as the maximum integer on your system if not defined <limits.h>.
 */
#undef INT_MAX

/*  You can define this label to be a string containing the name of a
 *  site-specific configuration file containing site-wide default options. The
 *  files /etc/ctags.conf and /usr/local/etc/ctags.conf are already checked,
 *  so only define one here if you need a file somewhere else.
 */
#undef CUSTOM_CONFIGURATION_FILE

/*  Define this label if you want macro tags (defined lables) to use patterns
 *  in the EX command by default (original ctags behavior is to use line
 *  numbers).
 */
#undef MACROS_USE_PATTERNS

/*  Define this as desired.
 *    1:  Original ctags format
 *    2:  Extended ctags format with extension flags in EX-style comment.
 */
#define DEFAULT_FILE_FORMAT	2

/*  Define this label if your system supports starting scripts with a line of
 *  the form "#! /bin/sh" to select the interpreter to use for the script.
 */
#undef SYS_INTERPRETER

/*  Define this label if your system uses case-insensitive file names
 */
#undef CASE_INSENSITIVE_FILENAMES

/*  Define this label to use the system sort utility (which is probably more
 *  efficient) over the internal sorting algorithm.
 */
#ifndef INTERNAL_SORT
# undef EXTERNAL_SORT
#endif

/* If you wish to change the directory in which temporary files are stored,
 * define this label to the directory desired.
 */
#undef TMPDIR

/* Define this label if regcomp() is broken.
 */
#undef REGCOMP_BROKEN

/* Define this label if you wish to check the regcomp() function at run time
 * for correct behavior. This function is currently broken on Cygwin.
 */
#undef CHECK_REGCOMP

/*  This corrects the problem of missing prototypes for certain functions
 *  in some GNU installations (e.g. SunOS 4.1.x).
 */
#undef __USE_FIXED_PROTOTYPES__

/*  Define this is you have a prototype for putenv() in <stdlib.h>, but
 *  doesn't declare its argument as "const char *".
 */
#undef NON_CONST_PUTENV_PROTOTYPE

/*  If you receive error or warning messages indicating that you are missing
 *  a prototype for, or a type mismatch using, one of the following functions,
 *  define the appropriate label and remake.
 */
#undef NEED_PROTO_REMOVE
#undef NEED_PROTO_UNLINK
#undef NEED_PROTO_MALLOC
#undef NEED_PROTO_GETENV
#undef NEED_PROTO_FGETPOS
#undef NEED_PROTO_STAT
#undef NEED_PROTO_LSTAT
#undef NEED_PROTO_TRUNCATE
#undef NEED_PROTO_FTRUNCATE

/*----------------------------------------------------------------------------
-	Lines below this are automatically generated by autoheader
----------------------------------------------------------------------------*/
/* @TOP@ */