[Libsysio-commit] HEAD: libsysio/include sysio-cmn.h
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2006-01-05 15:27:38
|
Update of /cvsroot/libsysio/libsysio/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12551 Modified Files: sysio-cmn.h Log Message: The PREPEND macro needs to be defined always in order to support compilation without alternate-symbols set. From Oleg Drokin at Cluster FS. Index: sysio-cmn.h =================================================================== RCS file: /cvsroot/libsysio/libsysio/include/sysio-cmn.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -w -b -B -p -r1.8 -r1.9 --- sysio-cmn.h 19 Oct 2005 19:30:56 -0000 1.8 +++ sysio-cmn.h 5 Jan 2006 15:27:31 -0000 1.9 @@ -90,13 +90,17 @@ struct intnl_xtvec; struct iovec; /* - * SYSIO name label macros + * Symbol composition. */ -#ifdef SYSIO_LABEL_NAMES #define _PREPEND_HELPER(p, x) \ p ## x #define PREPEND(p, x) \ _PREPEND_HELPER(p, x) + +/* + * SYSIO name label macros + */ +#ifdef SYSIO_LABEL_NAMES #define SYSIO_INTERFACE_NAME(x) \ PREPEND(SYSIO_LABEL_NAMES, x) #else |