summaryrefslogtreecommitdiffstats
path: root/osdep/shmem.h
diff options
context:
space:
mode:
Diffstat (limited to 'osdep/shmem.h')
-rw-r--r--osdep/shmem.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/osdep/shmem.h b/osdep/shmem.h
index 7696e45281..1aa8382f09 100644
--- a/osdep/shmem.h
+++ b/osdep/shmem.h
@@ -19,7 +19,9 @@
#ifndef MPLAYER_SHMEM_H
#define MPLAYER_SHMEM_H
-void* shmem_alloc(int size);
-void shmem_free(void* p,int size);
+#include <stdint.h>
+
+void* shmem_alloc(int64_t size);
+void shmem_free(void* p,int64_t size);
#endif /* MPLAYER_SHMEM_H */