Changeset 2673 for trunk/emx/src/emxbind/utils.c
- Timestamp:
- Mar 19, 2006, 6:21:22 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/emx/src/emxbind/utils.c
r18 r2673 49 49 exit (2); 50 50 } 51 52 53 /* Print an warning message. This function is called like printf(). 54 The message will be prefixed with "emxbind: warning: " and a 55 newline will be added at the end. */ 56 57 void warning (const char *fmt, ...) 58 { 59 va_list arg_ptr; 60 61 va_start (arg_ptr, fmt); 62 fprintf (stderr, "emxbind: warning: "); 63 vfprintf (stderr, fmt, arg_ptr); 64 fputc ('\n', stderr); 65 } 66 51 67 52 68 /* Print an out of memory message and abort. */
Note:
See TracChangeset
for help on using the changeset viewer.