~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to missing.c

  • Committer: Arnold D. Robbins
  • Date: 2010-07-16 10:09:56 UTC
  • Revision ID: git-v1:bc70de7b3302d5a81515b901cae376b8b51d2004
Tags: gawk-3.1.0
Move to gawk-3.1.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Do all necessary includes here, so that we don't have to worry about
3
 
 * overlapping includes in the files in missing.d.
4
 
 */
5
 
#include "awk.h"
6
 
 
7
 
 
8
 
#ifdef atarist
9
 
/*
10
 
 * this will work with gcc compiler - for other compilers you may
11
 
 * have to replace path separators in this file into backslashes
12
 
 */
13
 
#include "atari/stack.c"
14
 
#include "atari/tmpnam.c"
15
 
#endif /* atarist */
16
 
 
17
 
#ifndef HAVE_SYSTEM
18
 
#ifdef atarist
19
 
#include "atari/system.c"
20
 
#else
21
 
#include "missing/system.c"
22
 
#endif
23
 
#endif /* HAVE_SYSTEM */
24
 
 
25
 
#ifndef HAVE_MEMCMP
26
 
#include "missing/memcmp.c"
27
 
#endif  /* HAVE_MEMCMP */
28
 
 
29
 
#ifndef HAVE_MEMCPY
30
 
#include "missing/memcpy.c"
31
 
#endif  /* HAVE_MEMCPY */
32
 
 
33
 
#ifndef HAVE_MEMSET
34
 
#include "missing/memset.c"
35
 
#endif  /* HAVE_MEMSET */
36
 
 
37
 
#ifndef HAVE_STRNCASECMP
38
 
#include "missing/strncasecmp.c"
39
 
#endif  /* HAVE_STRCASE */
40
 
 
41
 
#ifndef HAVE_STRERROR
42
 
#include "missing/strerror.c"
43
 
#endif  /* HAVE_STRERROR */
44
 
 
45
 
#ifndef HAVE_STRFTIME
46
 
#include "missing/strftime.c"
47
 
#endif  /* HAVE_STRFTIME */
48
 
 
49
 
#ifndef HAVE_STRCHR
50
 
#include "missing/strchr.c"
51
 
#endif  /* HAVE_STRCHR */
52
 
 
53
 
#ifndef HAVE_STRTOD
54
 
#include "missing/strtod.c"
55
 
#endif  /* HAVE_STRTOD */
56
 
 
57
 
#ifndef HAVE_TZSET
58
 
#include "missing/tzset.c"
59
 
#endif /* HAVE_TZSET */