summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-18 22:18:11 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-18 22:18:11 +0000
commita09d3e1bc7deea9775705544bac7ea7b94234e4c (patch)
tree3fbff43643867b5f8685b1cb6a993be03866617a /loader
parente72f48c19f40a5e390f205396c47f94432d48033 (diff)
downloadmpv-a09d3e1bc7deea9775705544bac7ea7b94234e4c.tar.bz2
mpv-a09d3e1bc7deea9775705544bac7ea7b94234e4c.tar.xz
check that definition of prototype of sysi86(int, void*) doesn't conflict; fixed compilation in opensolaris
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22733 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader')
-rw-r--r--loader/ldt_keeper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/ldt_keeper.c b/loader/ldt_keeper.c
index ec2de5dbd0..cc0b2393bc 100644
--- a/loader/ldt_keeper.c
+++ b/loader/ldt_keeper.c
@@ -62,8 +62,8 @@ int modify_ldt(int func, void *ptr, unsigned long bytecount);
#include <sys/segment.h>
#include <sys/sysi86.h>
-/* solaris x86: add missing prototype for sysi86() */
-#ifdef HAVE_SYSI86
+/* solaris x86: add missing prototype for sysi86(), but only when sysi86(int, void*) is known to be valid */
+#ifdef HAVE_SYSI86_iv
#ifdef __cplusplus
extern "C" {
#endif