[Z88dk-commits] CVS: z88dk/include/_DEVELOPMENT ctype.h, 1.2, 1.3 st

Bridge to the z88dk-commits mailing list
Post Reply
alvin

[Z88dk-commits] CVS: z88dk/include/_DEVELOPMENT ctype.h, 1.2, 1.3 st

Post by alvin »

Update of /cvsroot/z88dk/z88dk/include/_DEVELOPMENT
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv26893

Modified Files:
ctype.h stddef.h stdio.h stdlib.h string.h threads.h z80.h
Log Message:
#if is needed to evaluate expressions

Index: ctype.h
===================================================================
RCS file: /cvsroot/z88dk/z88dk/include/_DEVELOPMENT/ctype.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ctype.h 1 Apr 2014 05:45:33 -0000 1.2
--- ctype.h 1 Apr 2014 16:57:48 -0000 1.3
***************
*** 3,7 ****
#define _CTYPE_H

! #ifdef __SDCC | __SDCC_IX | __SDCC_IY

// SDCC
--- 3,7 ----
#define _CTYPE_H

! #if __SDCC | __SDCC_IX | __SDCC_IY

// SDCC
***************
*** 50,52 ****
--- 50,53 ----

#endif
+
#endif

Index: stddef.h
===================================================================
RCS file: /cvsroot/z88dk/z88dk/include/_DEVELOPMENT/stddef.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** stddef.h 1 Apr 2014 05:45:33 -0000 1.2
--- stddef.h 1 Apr 2014 16:57:48 -0000 1.3
***************
*** 14,18 ****
typedef char wchar_t;

! #ifdef __SDCC | __SDCC_IX | __SDCC_IY

#define offsetof(t,m) __builtin_offsetof(t,m)
--- 14,18 ----
typedef char wchar_t;

! #if __SDCC | __SDCC_IX | __SDCC_IY

#define offsetof(t,m) __builtin_offsetof(t,m)
***************
*** 23,25 ****
--- 23,26 ----

#endif
+
#endif

Index: stdio.h
===================================================================
RCS file: /cvsroot/z88dk/z88dk/include/_DEVELOPMENT/stdio.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** stdio.h 1 Apr 2014 05:45:33 -0000 1.4
--- stdio.h 1 Apr 2014 16:57:48 -0000 1.5
***************
*** 28,32 ****
#define _IOLBF 1
#define _IONBF 2
! #define BUFSIZ 128

#define EOF -1
--- 28,32 ----
#define _IOLBF 1
#define _IONBF 2
! #define BUFSIZ 1 // this clib uses an alternative to buffering

#define EOF -1
***************
*** 42,46 ****
#define SEEK_END 2

! #ifdef __SDCC | __SDCC_IX | __SDCC_IY

// SDCC
--- 42,46 ----
#define SEEK_END 2

! #if __SDCC | __SDCC_IX | __SDCC_IY

// SDCC
***************
*** 301,303 ****
--- 301,304 ----

#endif
+
#endif

Index: stdlib.h
===================================================================
RCS file: /cvsroot/z88dk/z88dk/include/_DEVELOPMENT/stdlib.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** stdlib.h 1 Apr 2014 05:45:33 -0000 1.4
--- stdlib.h 1 Apr 2014 16:57:48 -0000 1.5
***************
*** 26,30 ****
#define RAND_MAX 32767

! #ifdef __SDCC | __SDCC_IX | __SDCC_IY

// SDCC
--- 26,30 ----
#define RAND_MAX 32767

! #if __SDCC | __SDCC_IX | __SDCC_IY

// SDCC
***************
*** 149,151 ****
--- 149,152 ----

#endif
+
#endif

Index: string.h
===================================================================
RCS file: /cvsroot/z88dk/z88dk/include/_DEVELOPMENT/string.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** string.h 1 Apr 2014 05:45:33 -0000 1.3
--- string.h 1 Apr 2014 16:57:48 -0000 1.4
***************
*** 5,9 ****
#include <_DEVELOPMENT/stddef.h>

! #ifdef __SDCC | __SDCC_IX | __SDCC_IY

// SDCC
--- 5,9 ----
#include <_DEVELOPMENT/stddef.h>

! #if __SDCC | __SDCC_IX | __SDCC_IY

// SDCC
***************
*** 216,218 ****
--- 216,219 ----

#endif
+
#endif

Index: threads.h
===================================================================
RCS file: /cvsroot/z88dk/z88dk/include/_DEVELOPMENT/threads.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** threads.h 1 Apr 2014 05:45:33 -0000 1.4
--- threads.h 1 Apr 2014 16:57:48 -0000 1.5
***************
*** 19,23 ****
} mtx_t;

! #ifdef __SDCC | __SDCC_IX | __SDCC_IY

// SDCC
--- 19,23 ----
} mtx_t;

! #if __SDCC | __SDCC_IX | __SDCC_IY

// SDCC
***************
*** 66,68 ****
--- 66,69 ----

#endif
+
#endif

Index: z80.h
===================================================================
RCS file: /cvsroot/z88dk/z88dk/include/_DEVELOPMENT/z80.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** z80.h 1 Apr 2014 05:45:33 -0000 1.4
--- z80.h 1 Apr 2014 16:57:48 -0000 1.5
***************
*** 5,9 ****
#include <_DEVELOPMENT/stdint.h>

! #ifdef __SDCC | __SDCC_IX | __SDCC_IY

// SDCC
--- 5,9 ----
#include <_DEVELOPMENT/stdint.h>

! #if __SDCC | __SDCC_IX | __SDCC_IY

// SDCC
***************
*** 28,30 ****
--- 28,31 ----

#endif
+
#endif


------------------------------------------------------------------------------
Post Reply