aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lib/sys_ctype.h
blob: 1dc6cf2fac2ddfd956a3bf71b5ee026937ada771 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _XENO_SYS_CTYPE_H_
#define _XENO_SYS_CTYPE_H_
/** @file
 ** Replacement for ctype include that can be used
 * from user or kernel code.
 */
#ifdef __KERNEL__
#  include <linux/ctype.h>
#else
#  include <ctype.h>
#endif
#endif /* ! _XENO_SYS_CTYPE_H_ */