[Libsysio-commit] HEAD: libsysio/dev/stdfd stdfd.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2005-01-25 00:38:08
|
Update of /cvsroot/libsysio/libsysio/dev/stdfd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22054/dev/stdfd Modified Files: stdfd.c Log Message: Finish support for compile-time selection of external names. There were many alias directives that had not been modified to use SYSIO_INTERFACE_NAME. There were some calls that needed that macro applied. The include files needed some massaging. Particularly xtio.h. One big gotcha; In libsysio, xtio.h must now be included *after* sysio.h or it will redefine SYSIO_INTERFACE_NAME. Index: stdfd.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/dev/stdfd/stdfd.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -w -b -B -p -r1.13 -r1.14 --- stdfd.c 14 Oct 2004 14:59:28 -0000 1.13 +++ stdfd.c 25 Jan 2005 00:36:46 -0000 1.14 @@ -54,8 +54,8 @@ #include <sys/stat.h> #include <sys/queue.h> -#include "xtio.h" #include "sysio.h" +#include "xtio.h" #include "native.h" #include "inode.h" #include "dev.h" |