Changeset 40549 for trunk/Ohana/src/libohana/include/ohana.h
- Timestamp:
- Oct 20, 2018, 8:58:31 PM (8 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/libohana/include/ohana.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/libohana/include/ohana.h
r40291 r40549 79 79 struct timeval startTimer, stopTimer; \ 80 80 gettimeofday (&startTimer, (void *) NULL); 81 82 // several snprintf statements below my truncate their output 83 // gcc (since 8.1) warns if the output may be truncated. 84 // If we do not care, the following snprintf_nowarn can 85 // replace these snprintf calls. (myNOOP in string.c) 86 87 # define snprintf_nowarn(...) (snprintf(__VA_ARGS__) < 0 ? myNOOP() : 0) 81 88 82 89 #ifdef __GNUC__ … … 314 321 char *getword PROTO((char *string)); 315 322 char *skipword PROTO((char *string)); 323 void myNOOP PROTO((void)); 316 324 317 325 /* in findexec.c */
Note:
See TracChangeset
for help on using the changeset viewer.
