libopkg: do not clobber package flags during parsing
[oweals/opkg-lede.git] / libopkg / xregex.h
index f67572b3133ab1ca806345120ccb026d857f8a2f..7d92d43ca132fcce0e568d137480637bdb79902f 100644 (file)
 #include <sys/types.h>
 #include <regex.h>
 
-int xregcomp(regex_t *preg, const char *regex, int cflags);
-static inline void xregfree(regex_t *preg)
+int xregcomp(regex_t * preg, const char *regex, int cflags);
+static inline void xregfree(regex_t * preg)
 {
-     regfree(preg);
+       regfree(preg);
 }
 
-
 #endif