File: config.h

package info (click to toggle)
libcompface 1%3A1.5.2-5.1
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 396 kB
  • sloc: ansic: 1,577; makefile: 225; sh: 182; perl: 28
file content (32 lines) | stat: -rw-r--r-- 498 bytes parent folder | download | duplicates (4)
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
#ifdef	STDC_HEADERS
#include <stdlib.h>
#include <string.h>
#else	/* Not STDC_HEADERS */
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
extern void exit ();
extern char *malloc ();
#endif	/* STDC_HEADERS */

#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif

#ifdef HAVE_IO_H
#include <io.h>
#endif

#ifdef HAVE_ERRNO_H
#include <errno.h>
#else
#ifndef HAVE_STRERROR
extern int errno, sys_nerr;
extern char *sys_errlist[];
#else
extern int errno;
char *strerror();
#endif
#endif

#include <stdio.h>