xref: /third_party/libsnd/src/GSM610/config.h (revision b815c7f3)
1/*
2 * Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
3 * Universitaet Berlin.  See the accompanying file "COPYRIGHT" for
4 * details.  THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
5 */
6
7#ifndef	CONFIG_H
8#define	CONFIG_H
9
10#define	HAS_STDLIB_H	1		/* /usr/include/stdlib.h	*/
11#define	HAS_FCNTL_H	1		/* /usr/include/fcntl.h		*/
12
13#define	HAS_FSTAT 	1		/* fstat syscall		*/
14#define	HAS_FCHMOD 	1		/* fchmod syscall		*/
15#define	HAS_CHMOD 	1		/* chmod syscall		*/
16#define	HAS_FCHOWN 	1		/* fchown syscall		*/
17#define	HAS_CHOWN 	1		/* chown syscall		*/
18
19#define	HAS_STRING_H 	1		/* /usr/include/string.h 	*/
20
21#define	HAS_UNISTD_H	1		/* /usr/include/unistd.h	*/
22#define	HAS_UTIME	1		/* POSIX utime(path, times)	*/
23#define	HAS_UTIME_H	1		/* UTIME header file		*/
24
25#endif	/* CONFIG_H */
26
27