File: s.c

package info (click to toggle)
xmcpustate 3-9
  • links: PTS
  • area: main
  • in suites: potato
  • size: 108 kB
  • ctags: 117
  • sloc: ansic: 771; makefile: 45
file content (27 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (6)
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
/*
 * for each type of machine, stick the appropriate ifdef's in here and define
 * s_included.  If s_included is not defined, it assumes BSD (i.e look for
 * _cp_time in kmem)
 */
#ifdef sgi
# ifdef mips
#  include "s-iris4d.c"
#  define s_included
# endif
#endif

#ifdef CRAY1
# include "s-cray-xmp.c"
# define s_included
#endif

#ifdef linux
# include "s-linux.c"
# define s_included
#endif

/* This should work on most BSD machines */
#ifndef s_included
# include "s-bsd.c"
#endif
/* Do not add anything after this line */