X-Git-Url: https://git.draconx.ca/gitweb/liblbx.git/blobdiff_plain/fb77487e5edd0bc34f1c59af263083728a6a85eb..256cc05240e58eb10bb4ffd44e942ed28f00c27e:/src/misc.h diff --git a/src/misc.h b/src/misc.h index af7298d..e8ba447 100644 --- a/src/misc.h +++ b/src/misc.h @@ -1,10 +1,6 @@ #ifndef LBX_MISC_H_ #define LBX_MISC_H_ -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif - #include #define MIN(a,b) (((a)<(b))?(a):(b)) @@ -21,11 +17,4 @@ # define _lbx_assert(expr) ((expr) ? 1 : 0) #endif -/** _lbx_fseek() - * Seeks the specified file to the specified offset, given that the file is - * currently positioned at *current. If the file does not support seeking, - * and offset > *current, perform the seek by reading (and discarding) data. - */ -int _lbx_fseek(FILE *f, long *current, size_t offset); - #endif