comparison decoders/voc.c @ 114:dd95a12539fd

Changed an #if defined to #ifdef, for consistency with the other decoders.
author Ryan C. Gordon <icculus@icculus.org>
date Thu, 04 Oct 2001 19:35:53 +0000
parents 40de367eb59e
children 1df5c106504e
comparison
equal deleted inserted replaced
113:7cd718877f3f 114:dd95a12539fd
39 39
40 #if HAVE_CONFIG_H 40 #if HAVE_CONFIG_H
41 # include <config.h> 41 # include <config.h>
42 #endif 42 #endif
43 43
44 #if (defined SOUND_SUPPORTS_VOC) 44 #ifdef SOUND_SUPPORTS_VOC
45 45
46 #include <stdio.h> 46 #include <stdio.h>
47 #include <stdlib.h> 47 #include <stdlib.h>
48 #include <string.h> 48 #include <string.h>
49 #include <assert.h> 49 #include <assert.h>