[Libsysio-commit] HEAD: libsysio/include sysio-cmn.h
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2005-01-24 20:03:58
|
Update of /cvsroot/libsysio/libsysio/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29919 Modified Files: sysio-cmn.h Log Message: Wrapped SYSIO_LABEL_NAMES with an ifndef so that it can be overridden at compile time. Index: sysio-cmn.h =================================================================== RCS file: /cvsroot/libsysio/libsysio/include/sysio-cmn.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -w -b -B -p -r1.3 -r1.4 --- sysio-cmn.h 19 Nov 2004 17:49:53 -0000 1.3 +++ sysio-cmn.h 24 Jan 2005 20:03:27 -0000 1.4 @@ -94,7 +94,9 @@ struct iovec; */ #define XPREPEND(p,x) p ## x #define PREPEND(p,x) XPREPEND(p,x) +#ifndef SYSIO_LABEL_NAMES #define SYSIO_LABEL_NAMES 0 +#endif #if SYSIO_LABEL_NAMES #define SYSIO_INTERFACE_NAME(x) PREPEND(sysio__, x) #else |