Fixed value of _POSIX_VDISABLE. cc_t is unsigned in Haiku. ATM we don't

support _POSIX_VDISABLE at all. It's even questionable whether the value
(unsigned char)-2 is a good choice.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29137 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2009-02-06 12:35:01 +00:00
parent 8eba0c540f
commit 9af9826fca

View File

@ -34,7 +34,8 @@
#define _POSIX_JOB_CONTROL 1
#define _POSIX_NO_TRUNC 0
#define _POSIX_SAVED_IDS 1
#define _POSIX_VDISABLE ((char) - 2) /* TODO: Check this! */
#define _POSIX_VDISABLE ((unsigned char)-2)
/* TODO: Check this! */
#define _POSIX_SEMAPHORES (200112L)
#define _POSIX_THREADS (200112L)