comparison src/sysproc.h @ 2286:04bc9d2f42c7

[xemacs-hg @ 2004-09-20 19:18:55 by james] Mark all unused parameters as unused. Also eliminate some unneeded local variables.
author james
date Mon, 20 Sep 2004 19:20:08 +0000
parents 804517e16990
children 3d8143fc88e1
comparison
equal deleted inserted replaced
2285:914c5afaac33 2286:04bc9d2f42c7
150 150
151 #ifdef HAVE_UTIL_H 151 #ifdef HAVE_UTIL_H
152 #include <util.h> /* openpty() on NetBSD */ 152 #include <util.h> /* openpty() on NetBSD */
153 #endif 153 #endif
154 154
155 /* The FD_* macros expand to __extension__ forms on glibc-based systems. Uno
156 does not understand such forms, so let's help it out. */
157 #ifdef UNO
158 #undef FD_SET
159 #undef FD_CLR
160 #undef FD_ISSET
161 #undef FD_ZERO
162 #undef MAXDESC
163 #undef SELECT_TYPE
164 #endif /* UNO */
165
155 #ifdef FD_SET 166 #ifdef FD_SET
156 167
157 /* We could get this from param.h, but better not to depend on finding that. 168 /* We could get this from param.h, but better not to depend on finding that.
158 And better not to risk that it might define other symbols used in this 169 And better not to risk that it might define other symbols used in this
159 file. */ 170 file. */