diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-10-13 14:50:42 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-10-13 14:50:42 +0000 |
commit | b8d3c5dbe700bcf673400eeed81122fc068142b4 (patch) | |
tree | 02a7c1cae6c6486ca2c7f6eaf15724e4ed169595 /perl.h | |
parent | 75423b5f6d91abef8e19b455d17f528607861a8b (diff) | |
download | perl-b8d3c5dbe700bcf673400eeed81122fc068142b4.tar.gz |
In Amdahl UTS "struct sv" is defined by a system header,
<ksync.h>.
p4raw-id: //depot/perl@7217
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1456,7 +1456,12 @@ typedef struct pvop PVOP; typedef struct loop LOOP; typedef struct interpreter PerlInterpreter; -typedef struct sv SV; +#ifdef UTS +# define STRUCT_SV perl_sv /* Amdahl's <ksync.h> has struct sv */ +#else +# define STRUCT_SV sv +#endif +typedef struct STRUCT_SV SV; typedef struct av AV; typedef struct hv HV; typedef struct cv CV; |