summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-03-11 09:45:10 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-03-11 09:45:10 +0000
commit28f20098c7c81703bb17836d89397acd9536e96c (patch)
treef7bb6b8ad7b19139cfd447f586d90cbca7e438c0 /perl.h
parent79632f42ca85f32c5fbbb2449e7694f067ecaf84 (diff)
downloadperl-28f20098c7c81703bb17836d89397acd9536e96c.tar.gz
tweaks for lynxos build (from Ed Mooring <mooring@lynx.com>)
p4raw-id: //depot/perl@5642
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/perl.h b/perl.h
index 911b998a94..b0100e1092 100644
--- a/perl.h
+++ b/perl.h
@@ -3204,7 +3204,11 @@ typedef struct am_table_short AMTS;
# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
# else
# ifdef USE_SEMCTL_SEMID_DS
-# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
+# ifdef EXTRA_F_IN_SEMUN_BUF
+# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buff)
+# else
+# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
+# endif
# endif
# endif
#endif