comparison src/nas.c @ 82:6a378aca36af r20-0b91

Import from CVS: tag r20-0b91
author cvs
date Mon, 13 Aug 2007 09:07:36 +0200
parents 131b0175ea99
children 727739f917cb
comparison
equal deleted inserted replaced
81:ebca3d831cea 82:6a378aca36af
49 * correct error facilities. 49 * correct error facilities.
50 * 4/11/94, rjc Added wait_for_sounds to be called when user wants to 50 * 4/11/94, rjc Added wait_for_sounds to be called when user wants to
51 * be sure all play has finished. 51 * be sure all play has finished.
52 */ 52 */
53 53
54 #ifdef STDC_HEADERS 54 #if __STDC__ || defined (STDC_HEADERS)
55 #include <stdlib.h> 55 # include <stdlib.h>
56 #include <stdarg.h> 56 # include <stdarg.h>
57 #include <string.h> 57 # include <string.h>
58 #endif 58 #endif
59 59
60 #ifdef HAVE_UNISTD_H 60 #ifdef HAVE_UNISTD_H
61 #include <unistd.h> 61 #include <unistd.h>
62 #endif 62 #endif
63
64 63
65 #include <stdio.h> 64 #include <stdio.h>
66 #include <config.h> /* for CONST in syssignal.h (neal@ctd.comsat.com) */ 65 #include <config.h> /* for CONST in syssignal.h (neal@ctd.comsat.com) */
67 #include "syssignal.h" 66 #include "syssignal.h"
68 67