~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to pc/config.h

  • Committer: Arnold D. Robbins
  • Date: 2010-07-16 09:27:41 UTC
  • Revision ID: git-v1:61bb57af53ebe916d2db6e3585d4fc7ac1d99b92
Tags: gawk-2.15.3
Move to gawk-2.15.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * config.h -- configuration definitions for gawk.
3
3
 *
4
 
 * MS-DOS systems using MSC 5.1
 
4
 * OS/2 or MS-DOS systems using emx/gcc or MSC
5
5
 */
6
6
 
7
7
/* 
124
124
 * Your system does not have the strcasemp() and strncasecmp()
125
125
 * routines that originated in Berkeley Unix.
126
126
 */
127
 
#define STRCASE_MISSING 1
 
127
/* #define      STRCASE_MISSING 1 */
 
128
#define strcasecmp   stricmp
 
129
#define strncasecmp  strnicmp
128
130
 
129
131
/*
130
132
 * STRCHR_MISSING
258
260
 
259
261
/* #define DEFPATH      ".:/usr/lib/awk:/usr/local/lib/awk" */
260
262
/* #define ENVSEP       ':' */
 
263
#define ENVSEP  ';'
261
264
 
262
265
/*
263
266
 * alloca already has a prototype defined - don't redefine it
269
272
 */
270
273
/* #define SRANDOM_PROTO        1 */
271
274
 
 
275
/*
 
276
 * getpgrp() in sysvr4 and POSIX takes no argument
 
277
 */
 
278
/* #define GETPGRP_NOARG        0 */
 
279
 
272
280
/* anything that follows is for system-specific short-term kludges */