blob: 08ec22df2871fd339815cb7463112ca1043bdfb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Header file: types.h
*
* Description:
* This header file is the autoconf substitute for sys/types.h. It
* includes it for us if it exists on this system.
*/
#ifndef _CONFIG_SYS_TYPES_H
#define _CONFIG_SYS_TYPES_H
#include "Config/config.h"
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#endif
|