]> git.sesse.net Git - vlc/blobdiff - include/vlc_fixups.h
Fixed dummy input Control function.
[vlc] / include / vlc_fixups.h
index bc751879ceb4cbf4b62578bf108472c22773a667..512b78557e68088bb69bbd8317993df56bf5be4b 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
@@ -53,6 +58,10 @@ typedef struct
 # include <stdarg.h> /* va_list */
 #endif
 
+#ifndef HAVE_GETPID
+# include <sys/types.h> /* pid_t */
+#endif
+
 #ifdef __cplusplus
 extern "C" {
 #endif
@@ -133,6 +142,10 @@ void rewind (FILE *);
 char *getcwd (char *buf, size_t size);
 #endif
 
+#ifndef HAVE_GETPID
+pid_t getpid (void);
+#endif
+
 #ifdef __cplusplus
 } /* extern "C" */
 #endif
@@ -153,19 +166,20 @@ static inline char *getenv (const char *name)
 #endif
 
 #ifndef HAVE_USELOCALE
+#define LC_NUMERIC_MASK 0
 typedef void *locale_t;
 static inline locale_t uselocale(locale_t loc)
 {
-    VLC_UNUSED(loc);
+    (void)loc;
     return NULL;
 }
 static inline void freelocale(locale_t loc)
 {
-    VLC_UNUSED(loc);
+    (void)loc;
 }
-static inline locale_t newlocale(int mask, const char * locale, locale_t base);
+static inline locale_t newlocale(int mask, const char * locale, locale_t base)
 {
-    VLC_UNUSED(mask); VLC_UNUSED(locale); VLC_UNUSED(base);
+    (void)mask; (void)locale; (void)base;
     return NULL;
 }
 #endif