]> git.sesse.net Git - vlc/blobdiff - include/vlc_fixups.h
Splitted SSE4 into SSE4.1, SSE4.2 and SSE4A.
[vlc] / include / vlc_fixups.h
index 24d3069a783f76e745a6140ee69fc3e1ab96955c..e0ebdb01745c75908c5e24a31651f697e2788461 100644 (file)
@@ -38,6 +38,11 @@ typedef struct
 } lldiv_t;
 #endif
 
+#if !defined(HAVE_GETENV) || \
+    !defined(HAVE_USELOCALE)
+# include <stddef.h> /* NULL */
+#endif
+
 #ifndef HAVE_REWIND
 # include <stdio.h> /* FILE */
 #endif
@@ -141,6 +146,10 @@ char *getcwd (char *buf, size_t size);
 pid_t getpid (void);
 #endif
 
+#ifndef HAVE_STRTOK_R
+char *strtok_r(char *, const char *, char **);
+#endif
+
 #ifdef __cplusplus
 } /* extern "C" */
 #endif