diff options
Diffstat (limited to 'winsup/cygwin/include/sys')
-rw-r--r-- | winsup/cygwin/include/sys/syslimits.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/winsup/cygwin/include/sys/syslimits.h b/winsup/cygwin/include/sys/syslimits.h new file mode 100644 index 000000000..b501de81e --- /dev/null +++ b/winsup/cygwin/include/sys/syslimits.h @@ -0,0 +1,20 @@ +/* sys/syslimits.h + + Copyright 2006 Red Hat, Inc. + +This file is part of Cygwin. + +This software is a copyrighted work licensed under the terms of the +Cygwin license. Please consult the file "CYGWIN_LICENSE" for +details. */ + +#ifndef _SYS_SYSLIMITS_H +#define _SYS_SYSLIMITS_H + +#ifdef _COMPILING_NEWLIB +# include <limits.h> +#else +# error "Do not include sys/syslimits.h from applications directly." +#endif + +#endif /*_SYS_SYSLIMITS_H */ |