From: Zoran V. <vas...@us...> - 2005-10-08 12:06:21
|
Update of /cvsroot/naviserver/naviserver/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7712/include Modified Files: ns.h nscheck.h Log Message: Applied TclVFS changes. Use (where possible) Tcl_FS wrappers when handling files on the filesystem. Index: nscheck.h =================================================================== RCS file: /cvsroot/naviserver/naviserver/include/nscheck.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** nscheck.h 5 Jul 2005 23:07:49 -0000 1.5 --- nscheck.h 8 Oct 2005 12:06:07 -0000 1.6 *************** *** 57,61 **** --- 57,65 ---- #if __GNUC_PREREQ(3,3) # define NS_GNUC_NONNULL(ARGS) __attribute__((__nonnull__(ARGS))) + #ifndef __APPLE__ # define NS_GNUC_WARN_UNUSED_RESULT __attribute__((__warn_unused_result__)) + #else + # define NS_GNUC_WARN_UNUSED_RESULT + #endif # define NS_GNUC_MAYALIAS __attribute__((__may_alias__)) #else Index: ns.h =================================================================== RCS file: /cvsroot/naviserver/naviserver/include/ns.h,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** ns.h 2 Oct 2005 22:23:09 -0000 1.50 --- ns.h 8 Oct 2005 12:06:07 -0000 1.51 *************** *** 1189,1200 **** NS_GNUC_NONNULL(2) NS_GNUC_NONNULL(3) NS_GNUC_NONNULL(4); - NS_EXTERN void * - Ns_ModuleSymbol(CONST char *file, CONST char *name) - NS_GNUC_NONNULL(1) NS_GNUC_NONNULL(2); - - NS_EXTERN void * - Ns_ModuleGetSymbol(CONST char *name) - NS_GNUC_NONNULL(1); - /* * nsthread.c: --- 1189,1192 ---- |