This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
adjust testsuite for change#3067
[perl5.git] / vms / vmsish.h
1 /*  vmsish.h
2  *
3  * VMS-specific C header file for perl5.
4  *
5  * Last revised: 18-Feb-1997 by Charles Bailey  bailey@genetics.upenn.edu
6  * Version: 5.3.28
7  */
8
9 #ifndef __vmsish_h_included
10 #define __vmsish_h_included
11
12 #include <descrip.h> /* for dirent struct definitions */
13 #include <libdef.h>  /* status codes for various places */
14 #include <rmsdef.h>  /* at which errno and vaxc$errno are */
15 #include <ssdef.h>   /* explicitly set in the perl source code */
16 #include <stsdef.h>  /* bitmasks for exit status testing */
17
18 /* Suppress compiler warnings from DECC for VMS-specific extensions:
19  * ADDRCONSTEXT,NEEDCONSTEXT: initialization of data with non-constant values
20  *                            (e.g. pointer fields of descriptors)
21  */
22 #ifdef __DECC
23 #  pragma message disable (ADDRCONSTEXT,NEEDCONSTEXT)
24 #endif
25
26 /* DEC's C compilers and gcc use incompatible definitions of _to(upp|low)er() */
27 #ifdef _toupper
28 #  undef _toupper
29 #endif
30 #define _toupper(c) (((c) < 'a' || (c) > 'z') ? (c) : (c) & ~040)
31 #ifdef _tolower
32 #  undef _tolower
33 #endif
34 #define _tolower(c) (((c) < 'A' || (c) > 'Z') ? (c) : (c) | 040)
35 /* DECC 1.3 has a funny definition of abs; it's fixed in DECC 4.0, so this
36  * can go away once DECC 1.3 isn't in use any more. */
37 #if defined(__ALPHA) && defined(__DECC)
38 #undef abs
39 #define abs(__x)        __ABS(__x)
40 #undef labs
41 #define labs(__x)        __LABS(__x)
42 #endif /* __ALPHA && __DECC */
43
44 /* Assorted things to look like Unix */
45 #ifdef __GNUC__
46 #ifndef _IOLBF /* gcc's stdio.h doesn't define this */
47 #define _IOLBF 1
48 #endif
49 #endif
50 #include <processes.h> /* for vfork() */
51 #include <unixio.h>
52 #include <unixlib.h>
53 #include <file.h>  /* it's not <sys/file.h>, so don't use I_SYS_FILE */
54 #if defined(__DECC) && defined(__DECC_VER) && __DECC_VER > 20000000
55 #  include <unistd.h> /* DECC has this; VAXC and gcc don't */
56 #endif
57
58 /* VAXC doesn't have a unary plus operator, so we need to get there indirectly */
59 #if defined(VAXC) && !defined(__DECC)
60 #  define NO_UNARY_PLUS
61 #endif
62
63 #ifdef NO_PERL_TYPEDEFS /* a2p; we don't want Perl's special routines */
64 #  define DONT_MASK_RTL_CALLS
65 #endif
66
67     /* defined for vms.c so we can see CRTL |  defined for a2p */
68 #ifndef DONT_MASK_RTL_CALLS
69 #  ifdef getenv
70 #    undef getenv
71 #  endif
72 #  define getenv(v) my_getenv(v)  /* getenv used for regular logical names */
73 #endif
74
75 /* DECC introduces this routine in the RTL as of VMS 7.0; for now,
76  * we'll use ours, since it gives us the full VMS exit status. */
77 #define waitpid my_waitpid
78
79 /* Don't redeclare standard RTL routines in Perl's header files;
80  * VMS history or extensions makes some of the formal protoypes
81  * differ from the common Unix forms.
82  */
83 #define DONT_DECLARE_STD 1
84
85 /* Our own contribution to PerlShr's global symbols . . . */
86 #  define my_trnlnm             Perl_my_trnlnm
87 #  define my_getenv             Perl_my_getenv
88 #  define prime_env_iter        Perl_prime_env_iter
89 #  define my_setenv             Perl_my_setenv
90 #  define my_crypt              Perl_my_crypt
91 #  define my_waitpid            Perl_my_waitpid
92 #  define my_gconvert           Perl_my_gconvert
93 #  define do_rmdir              Perl_do_rmdir
94 #  define kill_file             Perl_kill_file
95 #  define my_mkdir              Perl_my_mkdir
96 #  define my_utime              Perl_my_utime
97 #  define rmsexpand     Perl_rmsexpand
98 #  define rmsexpand_ts  Perl_rmsexpand_ts
99 #  define fileify_dirspec       Perl_fileify_dirspec
100 #  define fileify_dirspec_ts    Perl_fileify_dirspec_ts
101 #  define pathify_dirspec       Perl_pathify_dirspec
102 #  define pathify_dirspec_ts    Perl_pathify_dirspec_ts
103 #  define tounixspec            Perl_tounixspec
104 #  define tounixspec_ts         Perl_tounixspec_ts
105 #  define tovmsspec             Perl_tovmsspec
106 #  define tovmsspec_ts          Perl_tovmsspec_ts
107 #  define tounixpath            Perl_tounixpath
108 #  define tounixpath_ts         Perl_tounixpath_ts
109 #  define tovmspath             Perl_tovmspath
110 #  define tovmspath_ts          Perl_tovmspath_ts
111 #  define vms_image_init        Perl_vms_image_init
112 #  define opendir               Perl_opendir
113 #  define readdir               Perl_readdir
114 #  define telldir               Perl_telldir
115 #  define seekdir               Perl_seekdir
116 #  define closedir              Perl_closedir
117 #  define vmsreaddirversions    Perl_vmsreaddirversions
118 #  define my_gmtime             Perl_my_gmtime
119 #  define my_localtime          Perl_my_localtime
120 #  define my_time               Perl_my_time
121 #  define my_sigemptyset        Perl_my_sigemptyset
122 #  define my_sigfillset         Perl_my_sigfillset
123 #  define my_sigaddset          Perl_my_sigaddset
124 #  define my_sigdelset          Perl_my_sigdelset
125 #  define my_sigismember        Perl_my_sigismember
126 #  define my_sigprocmask        Perl_my_sigprocmask
127 #  define cando_by_name         Perl_cando_by_name
128 #  define flex_fstat            Perl_flex_fstat
129 #  define flex_stat             Perl_flex_stat
130 #  define trim_unixpath         Perl_trim_unixpath
131 #  define my_vfork              Perl_my_vfork
132 #  define vms_do_aexec          Perl_vms_do_aexec
133 #  define vms_do_exec           Perl_vms_do_exec
134 #  define do_aspawn             Perl_do_aspawn
135 #  define do_spawn              Perl_do_spawn
136 #  define my_fwrite             Perl_my_fwrite
137 #  define my_flush              Perl_my_flush
138 #  define my_binmode            Perl_my_binmode
139 #  define my_getpwnam           Perl_my_getpwnam
140 #  define my_getpwuid           Perl_my_getpwuid
141 #  define my_getpwent           Perl_my_getpwent
142 #  define my_endpwent           Perl_my_endpwent
143 #  define my_getlogin           Perl_my_getlogin
144 #  define rmscopy               Perl_rmscopy
145 #  define init_os_extras        Perl_init_os_extras
146
147 /* Delete if at all possible, changing protections if necessary. */
148 #define unlink kill_file
149
150 /* 
151  * Intercept calls to fork, so we know whether subsequent calls to
152  * exec should be handled in VMSish or Unixish style.
153  */
154 #define fork my_vfork
155 #ifndef DONT_MASK_RTL_CALLS     /* #defined in vms.c so we see real vfork */
156 #  ifdef vfork
157 #    undef vfork
158 #  endif
159 #  define vfork my_vfork
160 #endif
161
162 /* BIG_TIME:
163  *      This symbol is defined if Time_t is an unsigned type on this system.
164  */
165 #define BIG_TIME
166
167 /* ACME_MESS:
168  *      This symbol, if defined, indicates that error messages should be 
169  *      should be generated in a format that allows the use of the Acme
170  *      GUI/editor's autofind feature.
171  */
172 #undef ACME_MESS        /**/
173
174 /* ALTERNATE_SHEBANG:
175  *      This symbol, if defined, contains a "magic" string which may be used
176  *      as the first line of a Perl program designed to be executed directly
177  *      by name, instead of the standard Unix #!.  If ALTERNATE_SHEBANG
178  *      begins with a character other then #, then Perl will only treat
179  *      it as a command line if if finds the string "perl" in the first
180  *      word; otherwise it's treated as the first line of code in the script.
181  *      (IOW, Perl won't hand off to another interpreter via an alternate
182  *      shebang sequence that might be legal Perl code.)
183  */
184 #define ALTERNATE_SHEBANG "$"
185
186 /* Macros to set errno using the VAX thread-safe calls, if present */
187 #if (defined(__DECC) || defined(__DECCXX)) && !defined(__ALPHA)
188 #  define set_errno(v)      (cma$tis_errno_set_value(v))
189    void cma$tis_errno_set_value(int __value);  /* missing in some errno.h */
190 #  define set_vaxc_errno(v) (vaxc$errno = (v))
191 #else
192 #  define set_errno(v)      (errno = (v))
193 #  define set_vaxc_errno(v) (vaxc$errno = (v))
194 #endif
195
196 /* Support for 'vmsish' behaviors enabled with C<use vmsish> pragma */
197
198 #define COMPLEX_STATUS  1       /* We track both "POSIX" and VMS values */
199
200 #define HINT_V_VMSISH           24
201 #define HINT_M_VMSISH_STATUS    0x20000000 /* system, $? return VMS status */
202 #define HINT_M_VMSISH_EXIT      0x40000000 /* exit(1) ==> SS$_NORMAL */
203 #define HINT_M_VMSISH_TIME      0x80000000 /* times are local, not UTC */
204 #define NATIVE_HINTS            (PL_hints >> HINT_V_VMSISH)  /* used in op.c */
205
206 #define TEST_VMSISH(h)  (PL_curcop->op_private & ((h) >> HINT_V_VMSISH))
207 #define VMSISH_STATUS   TEST_VMSISH(HINT_M_VMSISH_STATUS)
208 #define VMSISH_EXIT     TEST_VMSISH(HINT_M_VMSISH_EXIT)
209 #define VMSISH_TIME     TEST_VMSISH(HINT_M_VMSISH_TIME)
210
211 /* Handy way to vet calls to VMS system services and RTL routines. */
212 #define _ckvmssts(call) STMT_START { register unsigned long int __ckvms_sts; \
213   if (!((__ckvms_sts=(call))&1)) { \
214   set_errno(EVMSERR); set_vaxc_errno(__ckvms_sts); \
215   croak("Fatal VMS error (status=%d) at %s, line %d", \
216   __ckvms_sts,__FILE__,__LINE__); } } STMT_END
217
218 /* Same thing, but don't call back to Perl's croak(); useful for errors
219  * occurring during startup, before Perl's state is initialized */
220 #define _ckvmssts_noperl(call) STMT_START { register unsigned long int __ckvms_sts; \
221   if (!((__ckvms_sts=(call))&1)) { \
222   set_errno(EVMSERR); set_vaxc_errno(__ckvms_sts); \
223   fprintf(Perl_debug_log,"Fatal VMS error (status=%d) at %s, line %d", \
224   __ckvms_sts,__FILE__,__LINE__); lib$signal(__ckvms_sts); } } STMT_END
225
226 #ifdef VMS_DO_SOCKETS
227 #include "sockadapt.h"
228 #endif
229
230 #define BIT_BUCKET "_NLA0:"
231 #define PERL_SYS_INIT(c,v)      vms_image_init((c),(v)); MALLOC_INIT
232 #define PERL_SYS_TERM()         MALLOC_TERM
233 #define dXSUB_SYS
234 #define HAS_KILL
235 #define HAS_WAIT
236
237 /* VMS:
238  *      This symbol, if defined, indicates that the program is running under
239  *      VMS.  It's a symbol automagically defined by all VMS C compilers I've seen.
240  * Just in case, however . . . */
241 #ifndef VMS
242 #define VMS             /**/
243 #endif
244
245 /* HAS_IOCTL:
246  *      This symbol, if defined, indicates that the ioctl() routine is
247  *      available to set I/O characteristics
248  */
249 #undef  HAS_IOCTL               /**/
250  
251 /* HAS_UTIME:
252  *      This symbol, if defined, indicates that the routine utime() is
253  *      available to update the access and modification times of files.
254  */
255 #define HAS_UTIME               /**/
256
257 /* HAS_GROUP
258  *      This symbol, if defined, indicates that the getgrnam() and
259  *      getgrgid() routines are available to get group entries.
260  *      The getgrent() has a separate definition, HAS_GETGRENT.
261  */
262 #undef HAS_GROUP                /**/
263
264 /* HAS_PASSWD
265  *      This symbol, if defined, indicates that the getpwnam() and
266  *      getpwuid() routines are available to get password entries.
267  *      The getpwent() has a separate definition, HAS_GETPWENT.
268  */
269 #define HAS_PASSWD              /**/
270
271 #define HAS_KILL
272 #define HAS_WAIT
273   
274 /* USEMYBINMODE
275  *      This symbol, if defined, indicates that the program should
276  *      use the routine my_binmode(FILE *fp, char iotype) to insure
277  *      that a file is in "binary" mode -- that is, that no translation
278  *      of bytes occurs on read or write operations.
279  */
280 #define USEMYBINMODE
281
282 /* Stat_t:
283  *      This symbol holds the type used to declare buffers for information
284  *      returned by stat().  It's usually just struct stat.  It may be necessary
285  *      to include <sys/stat.h> and <sys/types.h> to get any typedef'ed
286  *      information.
287  */
288 /* VMS:
289  * We need this typedef to point to the new type even if DONT_MASK_RTL_CALLS
290  * is in effect, since Perl's thread.h embeds one of these structs in its
291  * thread data struct, and our struct mystat is a different size from the
292  * regular struct stat (cf. note above about having to pad struct to work
293  * around bug in compiler.)
294  * It's OK to pass one of these to the RTL's stat(), though, since the
295  * fields it fills are the same in each struct.
296  */
297 #define Stat_t struct mystat
298
299 /* USE_STAT_RDEV:
300 *       This symbol is defined if this system has a stat structure declaring
301 *       st_rdev
302 *       VMS: Field exists in POSIXish version of struct stat(), but is not used.
303 */
304 #undef USE_STAT_RDEV            /**/
305
306 /*
307  * fwrite1() should be a routine with the same calling sequence as fwrite(),
308  * but which outputs all of the bytes requested as a single stream (unlike
309  * fwrite() itself, which on some systems outputs several distinct records
310  * if the number_of_items parameter is >1).
311  */
312 #define fwrite1 my_fwrite
313
314 /* By default, flush data all the way to disk, not just to RMS buffers */
315 #define Fflush(fp) my_flush(fp)
316
317 /* Use our own rmdir() */
318 #define rmdir(name) do_rmdir(name)
319
320 /* Assorted fiddling with sigs . . . */
321 # include <signal.h>
322 #define ABORT() abort()
323     /* VAXC's signal.h doesn't #define SIG_ERR, but provides BADSIG instead. */
324 #if !defined(SIG_ERR) && defined(BADSIG)
325 #  define SIG_ERR BADSIG
326 #endif
327
328
329 /* Used with our my_utime() routine in vms.c */
330 struct utimbuf {
331   time_t actime;
332   time_t modtime;
333 };
334 #define utime my_utime
335
336 /* This is what times() returns, but <times.h> calls it tbuffer_t on VMS
337  * prior to v7.0.  We check the DECC manifest to see whether it's already
338  * done this for us, relying on the fact that perl.h #includes <time.h>
339  * before it #includes "vmsish.h".
340  */
341
342 #ifndef __TMS
343   struct tms {
344     clock_t tms_utime;    /* user time */
345     clock_t tms_stime;    /* system time - always 0 on VMS */
346     clock_t tms_cutime;   /* user time, children */
347     clock_t tms_cstime;   /* system time, children - always 0 on VMS */
348   };
349 #else
350    /* The new headers change the times() prototype to tms from tbuffer */
351 #  define tbuffer_t struct tms
352 #endif
353
354 /* Substitute our own routines for gmtime(), localtime(), and time(),
355  * which allow us to implement the vmsish 'time' pragma, and work
356  * around absence of system-level UTC support on old versions of VMS.
357  */
358 #define gmtime(t) my_gmtime(t)
359 #define localtime(t) my_localtime(t)
360 #define time(t) my_time(t)
361
362 /* If we're using an older version of VMS whose Unix signal emulation
363  * isn't very POSIXish, then roll our own.
364  */
365 #if __VMS_VER < 70000000 || __DECC_VER < 50200000
366 #  define HOMEGROWN_POSIX_SIGNALS
367 #endif
368 #ifdef HOMEGROWN_POSIX_SIGNALS
369 #  define sigemptyset(t) my_sigemptyset(t)
370 #  define sigfillset(t) my_sigfillset(t)
371 #  define sigaddset(t, u) my_sigaddset(t, u)
372 #  define sigdelset(t, u) my_sigdelset(t, u)
373 #  define sigismember(t, u) my_sigismember(t, u)
374 #  define sigprocmask(t, u, v) my_sigprocmask(t, u, v)
375 #  ifndef _SIGSET_T
376    typedef int sigset_t;
377 #  endif
378    /* The tools for sigprocmask() are there, just not the routine itself */
379 #  ifndef SIG_UNBLOCK
380 #    define SIG_UNBLOCK 1
381 #  endif
382 #  ifndef SIG_BLOCK
383 #    define SIG_BLOCK 2
384 #  endif
385 #  ifndef SIG_SETMASK
386 #    define SIG_SETMASK 3
387 #  endif
388 #  define sigaction sigvec
389 #  define sa_flags sv_onstack
390 #  define sa_handler sv_handler
391 #  define sa_mask sv_mask
392 #  define sigsuspend(set) sigpause(*set)
393 #  define sigpending(a) (not_here("sigpending"),0)
394 #endif
395
396 /* VMS doesn't use a real sys_nerr, but we need this when scanning for error
397  * messages in text strings . . .
398  */
399
400 #define sys_nerr EVMSERR  /* EVMSERR is as high as we can go. */
401
402 /* Look up new %ENV values on the fly */
403 #define DYNAMIC_ENV_FETCH 1
404 #define ENV_HV_NAME "%EnV%VmS%"
405   /* Special getenv function for retrieving %ENV elements. */
406 #define ENV_getenv(v) my_getenv(v)
407
408
409 /* Thin jacket around cuserid() tomatch Unix' calling sequence */
410 #define getlogin my_getlogin
411
412 /* Ditto for sys$hash_passwrod() . . . */
413 #define crypt  my_crypt
414
415 /* Tweak arg to mkdir first, so we can tolerate trailing /. */
416 #define Mkdir(dir,mode) my_mkdir((dir),(mode))
417
418 /* Use our own stat() clones, which handle Unix-style directory names */
419 #define Stat(name,bufptr) flex_stat(name,bufptr)
420 #define Fstat(fd,bufptr) flex_fstat(fd,bufptr)
421
422 /* Setup for the dirent routines:
423  * opendir(), closedir(), readdir(), seekdir(), telldir(), and
424  * vmsreaddirversions(), and preprocessor stuff on which these depend:
425  *    Written by Rich $alz, <rsalz@bbn.com> in August, 1990.
426  */
427     /* Data structure returned by READDIR(). */
428 struct dirent {
429     char        d_name[256];            /* File name            */
430     int         d_namlen;                       /* Length of d_name */
431     int         vms_verscount;          /* Number of versions   */
432     int         vms_versions[20];       /* Version numbers      */
433 };
434
435     /* Handle returned by opendir(), used by the other routines.  You
436      * are not supposed to care what's inside this structure. */
437 typedef struct _dirdesc {
438     long                        context;
439     int                         vms_wantversions;
440     unsigned long int           count;
441     char                        *pattern;
442     struct dirent               entry;
443     struct dsc$descriptor_s     pat;
444 } DIR;
445
446 #define rewinddir(dirp)         seekdir((dirp), 0)
447
448 /* used for our emulation of getpw* */
449 struct passwd {
450         char    *pw_name;    /* Username */
451         char    *pw_passwd;
452         Uid_t   pw_uid;      /* UIC member number */
453         Gid_t   pw_gid;      /* UIC group  number */
454         char    *pw_comment; /* Default device/directory (Unix-style) */
455         char    *pw_gecos;   /* Owner */
456         char    *pw_dir;     /* Default device/directory (VMS-style) */
457         char    *pw_shell;   /* Default CLI name (eg. DCL) */
458 };
459 #define pw_unixdir pw_comment  /* Default device/directory (Unix-style) */
460 #define getpwnam my_getpwnam
461 #define getpwuid my_getpwuid
462 #define getpwent my_getpwent
463 #define endpwent my_endpwent
464 #define setpwent my_endpwent
465
466 /* Our own stat_t substitute, since we play with st_dev and st_ino -
467  * we want atomic types so Unix-bound code which compares these fields
468  * for two files will work most of the time under VMS.
469  * N.B. 1. The st_ino hack assumes that sizeof(unsigned short[3]) ==
470  * sizeof(unsigned) + sizeof(unsigned short).  We can't use a union type
471  * to map the unsigned int we want and the unsigned short[3] the CRTL
472  * returns into the same member, since gcc has different ideas than DECC
473  * and VAXC about sizing union types.
474  * N.B 2. The routine cando() in vms.c assumes that &stat.st_ino is the
475  * address of a FID.
476  */
477 /* First, grab the system types, so we don't clobber them later */
478 #include <stat.h>
479 /* Since we've got to match the size of the CRTL's stat_t, we need
480  * to mimic DECC's alignment settings.
481  */
482 #if defined(__DECC) || defined(__DECCXX)
483 #  pragma __member_alignment __save
484 #  pragma __nomember_alignment
485 #endif
486 #if defined(__DECC) 
487 #  pragma __message __save
488 #  pragma __message disable (__MISALGNDSTRCT)
489 #  pragma __message disable (__MISALGNDMEM)
490 #endif
491 struct mystat
492 {
493         char *st_devnam;  /* pointer to device name */
494         unsigned st_ino;    /* hack - CRTL uses unsigned short[3] for */
495         unsigned short rvn; /* FID (num,seq,rvn) */
496         unsigned short st_mode; /* file "mode" i.e. prot, dir, reg, etc. */
497         int     st_nlink;       /* for compatibility - not really used */
498         unsigned st_uid;        /* from ACP - QIO uic field */
499         unsigned short st_gid;  /* group number extracted from st_uid */
500         dev_t   st_rdev;        /* for compatibility - always zero */
501         off_t   st_size;        /* file size in bytes */
502         unsigned st_atime;      /* file access time; always same as st_mtime */
503         unsigned st_mtime;      /* last modification time */
504         unsigned st_ctime;      /* file creation time */
505         char    st_fab_rfm;     /* record format */
506         char    st_fab_rat;     /* record attributes */
507         char    st_fab_fsz;     /* fixed header size */
508         unsigned st_dev;        /* encoded device name */
509         /* Pad struct out to integral number of longwords, since DECC 5.6/VAX
510          * has a bug in dealing with offsets in structs in which are embedded
511          * other structs whose size is an odd number of bytes.  (An even
512          * number of bytes is enough to make it happy, but we go for natural
513          * alignment anyhow.)
514          */
515         char    st_fill1[sizeof(void *) - (3*sizeof(unsigned short) + 3*sizeof(char))%sizeof(void *)];
516 };
517 typedef unsigned mydev_t;
518 typedef unsigned myino_t;
519 #ifndef DONT_MASK_RTL_CALLS  /* defined for vms.c so we can see RTL calls */
520 #  ifdef stat
521 #    undef stat
522 #  endif
523 #  define stat mystat
524 #  define dev_t mydev_t
525 #  define ino_t myino_t
526 #endif
527 #if defined(__DECC) || defined(__DECCXX)
528 #  pragma __member_alignment __restore
529 #endif
530 #if defined(__DECC) 
531 #  pragma __message __restore
532 #endif
533 /* Cons up a 'delete' bit for testing access */
534 #define S_IDUSR (S_IWUSR | S_IXUSR)
535 #define S_IDGRP (S_IWGRP | S_IXGRP)
536 #define S_IDOTH (S_IWOTH | S_IXOTH)
537
538 /* Prototypes for functions unique to vms.c.  Don't include replacements
539  * for routines in the mainline source files excluded by #ifndef VMS;
540  * their prototypes are already in proto.h.
541  *
542  * In order to keep Gen_ShrFls.Pl happy, functions which are to be made
543  * available to images linked to PerlShr.Exe must be declared between the
544  * __VMS_PROTOTYPES__ and __VMS_SEPYTOTORP__ lines, and must be in the form
545  *    <data type><TAB>name<WHITESPACE>_((<prototype args>));
546  */
547
548 #ifdef NO_PERL_TYPEDEFS
549   /* We don't have Perl typedefs available (e.g. when building a2p), so
550      we fake them here.  N.B.  There is *no* guarantee that the faked
551      prototypes will actually match the real routines.  If you want to
552      call Perl routines, include perl.h to get the real typedefs.  */
553 #  ifndef bool
554 #    define bool int
555 #    define __MY_BOOL_TYPE_FAKE
556 #  endif
557 #  ifndef I32
558 #    define I32  int
559 #    define __MY_I32_TYPE_FAKE
560 #  endif
561 #  ifndef SV
562 #    define SV   void   /* Since we only see SV * in prototypes */
563 #    define __MY_SV_TYPE_FAKE
564 #  endif
565 #endif
566
567 void    prime_env_iter _((void));
568 void    init_os_extras _(());
569 /* prototype section start marker; `typedef' passes through cpp */
570 typedef char  __VMS_PROTOTYPES__;
571 int     my_trnlnm _((char *, char *, unsigned long int));
572 char *  my_getenv _((const char *));
573 char *  my_crypt _((const char *, const char *));
574 Pid_t   my_waitpid _((Pid_t, int *, int));
575 char *  my_gconvert _((double, int, int, char *));
576 int     do_rmdir _((char *));
577 int     kill_file _((char *));
578 int     my_mkdir _((char *, Mode_t));
579 int     my_utime _((char *, struct utimbuf *));
580 char *  rmsexpand _((char *, char *, char *, unsigned));
581 char *  rmsexpand_ts _((char *, char *, char *, unsigned));
582 char *  fileify_dirspec _((char *, char *));
583 char *  fileify_dirspec_ts _((char *, char *));
584 char *  pathify_dirspec _((char *, char *));
585 char *  pathify_dirspec_ts _((char *, char *));
586 char *  tounixspec _((char *, char *));
587 char *  tounixspec_ts _((char *, char *));
588 char *  tovmsspec _((char *, char *));
589 char *  tovmsspec_ts _((char *, char *));
590 char *  tounixpath _((char *, char *));
591 char *  tounixpath_ts _((char *, char *));
592 char *  tovmspath _((char *, char *));
593 char *  tovmspath_ts _((char *, char *));
594 void    vms_image_init _((int *, char ***));
595 DIR *   opendir _((char *));
596 struct dirent * readdir _((DIR *));
597 long    telldir _((DIR *));
598 void    seekdir _((DIR *, long));
599 void    closedir _((DIR *));
600 void    vmsreaddirversions _((DIR *, int));
601 struct tm *     my_gmtime _((const time_t *));
602 struct tm *     my_localtime _((const time_t *));
603 time_t  my_time _((time_t *));
604 #ifdef HOMEGROWN_POSIX_SIGNALS
605 int     my_sigemptyset _((sigset_t *));
606 int     my_sigfillset  _((sigset_t *));
607 int     my_sigaddset   _((sigset_t *, int));
608 int     my_sigdelset   _((sigset_t *, int));
609 int     my_sigismember _((sigset_t *, int));
610 int     my_sigprocmask _((int, sigset_t *, sigset_t *));
611 #endif
612 I32     cando_by_name _((I32, I32, char *));
613 int     flex_fstat _((int, Stat_t *));
614 int     flex_stat _((char *, Stat_t *));
615 int     trim_unixpath _((char *, char*, int));
616 int     my_vfork _(());
617 bool    vms_do_aexec _((SV *, SV **, SV **));
618 bool    vms_do_exec _((char *));
619 unsigned long int       do_aspawn _((void *, void **, void **));
620 unsigned long int       do_spawn _((char *));
621 int     my_fwrite _((void *, size_t, size_t, FILE *));
622 int     my_flush _((FILE *));
623 FILE *  my_binmode _((FILE *, char));
624 struct passwd * my_getpwnam _((char *name));
625 struct passwd * my_getpwuid _((Uid_t uid));
626 struct passwd * my_getpwent _(());
627 void    my_endpwent _(());
628 char *  my_getlogin _(());
629 int     rmscopy _((char *, char *, int));
630 typedef char __VMS_SEPYTOTORP__;
631 /* prototype section end marker; `typedef' passes through cpp */
632
633 #ifdef NO_PERL_TYPEDEFS  /* We'll try not to scramble later files */
634 #  ifdef __MY_BOOL_TYPE_FAKE
635 #    undef bool
636 #    undef __MY_BOOL_TYPE_FAKE
637 #  endif
638 #  ifdef __MY_I32_TYPE_FAKE
639 #    undef I32
640 #    undef __MY_I32_TYPE_FAKE
641 #  endif
642 #  ifdef __MY_SV_TYPE_FAKE
643 #    undef SV
644 #    undef __MY_SV_TYPE_FAKE
645 #  endif
646 #endif
647
648 #ifndef VMS_DO_SOCKETS
649 /* This relies on tricks in perl.h to pick up that these manifest constants
650  * are undefined and set up conversion routines.  It will then redefine
651  * these manifest constants, so the actual values will match config.h
652  */
653 #undef HAS_HTONS
654 #undef HAS_NTOHS
655 #undef HAS_HTONL
656 #undef HAS_NTOHL
657 #endif
658
659 #define TMPPATH "sys$scratch:perl-eXXXXXX"
660
661 #endif  /* __vmsish_h_included */