File: useconfig.h

package info (click to toggle)
rsynth 2.0-6
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 720 kB
  • ctags: 544
  • sloc: ansic: 5,535; sh: 1,249; makefile: 117
file content (31 lines) | stat: -rw-r--r-- 567 bytes parent folder | download | duplicates (7)
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
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif

#if STDC_HEADERS
#include <stddef.h>
#include <string.h>
#include <stdlib.h>
#else          
#ifndef HAVE_STRCHR          
#define strchr index          
#define strrchr rindex          
#endif          
char *strchr (), *strrchr ();
#ifndef HAVE_MEMCPY          
#define memcpy(d, s, n) bcopy ((s), (d), (n))          
#endif
#ifdef HAVE_MALLOC_H
#include <malloc.h>
#endif
#endif /* STDC_HEADERS */

#if HAVE_UNISTD_H
#include <unistd.h>
#endif

#if HAVE_LIBC_H
/* From NeXT stuff */
#include <libc.h>
#endif