summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-22 09:09:46 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-22 09:09:46 +0000
commit8efb2fa21c81f99b37795621f9ec2bc125c6ced0 (patch)
tree9a6f354228affe704b16844775070159e82b5fcd /osdep
parent50899e9083661200d9bb105dca0339c14e56d271 (diff)
downloadmpv-8efb2fa21c81f99b37795621f9ec2bc125c6ced0.tar.bz2
mpv-8efb2fa21c81f99b37795621f9ec2bc125c6ced0.tar.xz
Add MPLAYER_ prefix to multiple inclusion guards.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26061 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'osdep')
-rw-r--r--osdep/getch2.h6
-rw-r--r--osdep/glob.h6
-rw-r--r--osdep/keycodes.h6
-rw-r--r--osdep/mmap_anon.h6
-rw-r--r--osdep/shmem.h6
5 files changed, 15 insertions, 15 deletions
diff --git a/osdep/getch2.h b/osdep/getch2.h
index c2e14aa5ee..b91bd7176d 100644
--- a/osdep/getch2.h
+++ b/osdep/getch2.h
@@ -1,8 +1,8 @@
/* GyS-TermIO v2.0 (for GySmail v3) (C) 1999 A'rpi/ESP-team */
/* a very small replacement of ncurses library */
-#ifndef GETCH2_H
-#define GETCH2_H
+#ifndef MPLAYER_GETCH2_H
+#define MPLAYER_GETCH2_H
/* Screen size. Initialized by load_termcap() and get_screen_size() */
extern int screen_width;
@@ -35,4 +35,4 @@ extern int mp_input_slave_cmd_func(int fd,char* dest,int size);
#define MP_INPUT_SLAVE_CMD_FUNC NULL
#endif
-#endif /* GETCH2_H */
+#endif /* MPLAYER_GETCH2_H */
diff --git a/osdep/glob.h b/osdep/glob.h
index 57a2d1f949..6f6599ed7f 100644
--- a/osdep/glob.h
+++ b/osdep/glob.h
@@ -1,5 +1,5 @@
-#ifndef GLOB_H
-#define GLOB_H
+#ifndef MPLAYER_GLOB_H
+#define MPLAYER_GLOB_H
#include "config.h"
@@ -13,4 +13,4 @@ void globfree(glob_t *pglob);
int glob(const char *pattern, int flags, int (*errfunc)(const char *epath, int eerrno), glob_t *pglob);
-#endif /* GLOB_H */
+#endif /* MPLAYER_GLOB_H */
diff --git a/osdep/keycodes.h b/osdep/keycodes.h
index fdd6343f78..d7e4e785c0 100644
--- a/osdep/keycodes.h
+++ b/osdep/keycodes.h
@@ -1,7 +1,7 @@
/* KEY code definitions for GyS-TermIO v2.0 (C) 1999 A'rpi/ESP-team */
-#ifndef KEYCODES_H
-#define KEYCODES_H
+#ifndef MPLAYER_KEYCODES_H
+#define MPLAYER_KEYCODES_H
#define KEY_ENTER 13
#define KEY_TAB 9
@@ -74,4 +74,4 @@
#define KEY_INTERN (0x1000)
#define KEY_CLOSE_WIN (KEY_INTERN+0)
-#endif /* KEYCODES_H */
+#endif /* MPLAYER_KEYCODES_H */
diff --git a/osdep/mmap_anon.h b/osdep/mmap_anon.h
index 7845a9bc05..f8712ca628 100644
--- a/osdep/mmap_anon.h
+++ b/osdep/mmap_anon.h
@@ -1,8 +1,8 @@
-#ifndef MMAP_ANON_H
-#define MMAP_ANON_H
+#ifndef MPLAYER_MMAP_ANON_H
+#define MPLAYER_MMAP_ANON_H
#include <sys/types.h>
void *mmap_anon(void *, size_t, int, int, off_t);
-#endif /* MMAP_ANON_H */
+#endif /* MPLAYER_MMAP_ANON_H */
diff --git a/osdep/shmem.h b/osdep/shmem.h
index 8d71288b97..bdfcb5c474 100644
--- a/osdep/shmem.h
+++ b/osdep/shmem.h
@@ -1,7 +1,7 @@
-#ifndef SHMEM_H
-#define SHMEM_H
+#ifndef MPLAYER_SHMEM_H
+#define MPLAYER_SHMEM_H
void* shmem_alloc(int size);
void shmem_free(void* p,int size);
-#endif /* SHMEM_H */
+#endif /* MPLAYER_SHMEM_H */