d7cd6603b4
tested ok on Dano note that _IO* macros were redefined for the R5 target, the ones in Haiku aren't compatible with R5 git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14524 a95241bf-73f2-0310-859d-f6bbb57e9c96
14 lines
318 B
C
14 lines
318 B
C
/* version.h 1.118 2003/12/20 07:16:36 (David Hinds) */
|
|
|
|
#define CS_PKG_RELEASE "3.2.8"
|
|
#define CS_PKG_RELEASE_CODE 0x3208
|
|
|
|
#define VERSION(v,p,s) (((v)<<16)+(p<<8)+s)
|
|
|
|
#ifdef CONFIG_PCMCIA
|
|
#include_next <pcmcia/version.h>
|
|
#else
|
|
#define CS_RELEASE CS_PKG_RELEASE
|
|
#define CS_RELEASE_CODE CS_PKG_RELEASE_CODE
|
|
#endif
|