comparison src/xs_support.c @ 877:5e33075ed9dd

Oops, a #ifdef was reversed, causing the xs_fsize() function not to be compiled.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 09 Nov 2012 05:14:23 +0200
parents 3c3569894b23
children 2a50d36215c3
comparison
equal deleted inserted replaced
876:d03e5c73eb51 877:5e33075ed9dd
26 */ 26 */
27 #include "xs_support.h" 27 #include "xs_support.h"
28 #include <ctype.h> 28 #include <ctype.h>
29 #include <glib.h> 29 #include <glib.h>
30 30
31 #ifdef __AUDACIOUS_NEWVFS__ 31 #ifndef __AUDACIOUS_NEWVFS__
32 off_t xs_fsize(XSFile *f) 32 off_t xs_fsize(XSFile *f)
33 { 33 {
34 off_t pos; 34 off_t pos;
35 if (fseeko(f, 0, SEEK_END) < 0) 35 if (fseeko(f, 0, SEEK_END) < 0)
36 return -1; 36 return -1;