comparison playsound/physfsrwops.c @ 479:35dfa9d9782e

Fixed automake nonsense.
author Ryan C. Gordon <icculus@icculus.org>
date Fri, 12 Nov 2004 08:04:00 +0000
parents d8c0315deba9
children 50bb9a6cebfe
comparison
equal deleted inserted replaced
478:15a540505a02 479:35dfa9d9782e
16 * 16 *
17 * SDL falls under the LGPL, too. You can get SDL at http://www.libsdl.org/ 17 * SDL falls under the LGPL, too. You can get SDL at http://www.libsdl.org/
18 * 18 *
19 * This file was written by Ryan C. Gordon. (icculus@clutteredmind.org). 19 * This file was written by Ryan C. Gordon. (icculus@clutteredmind.org).
20 */ 20 */
21
22 #if SUPPORT_PHYSFS
21 23
22 #include <stdio.h> /* used for SEEK_SET, SEEK_CUR, SEEK_END ... */ 24 #include <stdio.h> /* used for SEEK_SET, SEEK_CUR, SEEK_END ... */
23 #include "physfsrwops.h" 25 #include "physfsrwops.h"
24 26
25 static int physfsrwops_seek(SDL_RWops *rw, int offset, int whence) 27 static int physfsrwops_seek(SDL_RWops *rw, int offset, int whence)
185 SDL_RWops *PHYSFSRWOPS_openAppend(const char *fname) 187 SDL_RWops *PHYSFSRWOPS_openAppend(const char *fname)
186 { 188 {
187 return(create_rwops(PHYSFS_openAppend(fname))); 189 return(create_rwops(PHYSFS_openAppend(fname)));
188 } /* PHYSFSRWOPS_openAppend */ 190 } /* PHYSFSRWOPS_openAppend */
189 191
192 #endif
190 193
191 /* end of physfsrwops.c ... */ 194 /* end of physfsrwops.c ... */
192 195