This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Silence time64.c build warning
[perl5.git] / vms / vmsish.h
1 /*    vmsish.h
2  *
3  *    VMS-specific C header file for perl5.
4  *
5  *    Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
6  *    2002, 2003, 2004, 2005, 2006, 2007 by Charles Bailey and others.
7  *
8  *    You may distribute under the terms of either the GNU General Public
9  *    License or the Artistic License, as specified in the README file.
10  *
11  *    Please see Changes*.* or the Perl Repository Browser for revision history.
12  */
13
14 #ifndef __vmsish_h_included
15 #define __vmsish_h_included
16
17 #include <descrip.h> /* for dirent struct definitions */
18 #include <libdef.h>  /* status codes for various places */
19 #include <rmsdef.h>  /* at which errno and vaxc$errno are */
20 #include <ssdef.h>   /* explicitly set in the perl source code */
21 #include <stsdef.h>  /* bitmasks for exit status testing */
22
23 /* Suppress compiler warnings from DECC for VMS-specific extensions:
24  * ADDRCONSTEXT,NEEDCONSTEXT: initialization of data with non-constant values
25  *                            (e.g. pointer fields of descriptors)
26  */
27 #if defined(__DECC) || defined(__DECCXX)
28 #  pragma message disable (ADDRCONSTEXT,NEEDCONSTEXT)
29 #endif
30
31 /* DEC's C compilers and gcc use incompatible definitions of _to(upp|low)er() */
32 #ifdef _toupper
33 #  undef _toupper
34 #endif
35 #define _toupper(c) (((c) < 'a' || (c) > 'z') ? (c) : (c) & ~040)
36 #ifdef _tolower
37 #  undef _tolower
38 #endif
39 #define _tolower(c) (((c) < 'A' || (c) > 'Z') ? (c) : (c) | 040)
40 /* DECC 1.3 has a funny definition of abs; it's fixed in DECC 4.0, so this
41  * can go away once DECC 1.3 isn't in use any more. */
42 #if defined(__ALPHA) && (defined(__DECC) || defined(__DECCXX))
43 #undef abs
44 #define abs(__x)        __ABS(__x)
45 #undef labs
46 #define labs(__x)        __LABS(__x)
47 #endif /* __ALPHA && __DECC */
48
49 /* Assorted things to look like Unix */
50 #ifdef __GNUC__
51 #ifndef _IOLBF /* gcc's stdio.h doesn't define this */
52 #define _IOLBF 1
53 #endif
54 #endif
55 #include <processes.h> /* for vfork() */
56 #include <unixio.h>
57 #include <unixlib.h>
58 #include <file.h>  /* it's not <sys/file.h>, so don't use I_SYS_FILE */
59 #if (defined(__DECC) && defined(__DECC_VER) && __DECC_VER > 20000000) || defined(__DECCXX)
60 #  include <unistd.h> /* DECC has this; gcc doesn't */
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 #include <namdef.h>
68
69 /* Set the maximum filespec size here as it is larger for EFS file
70  * specifications.
71  */
72 #ifndef __VAX
73 #ifndef VMS_MAXRSS
74 #ifdef NAML$C_MAXRSS
75 #define VMS_MAXRSS (NAML$C_MAXRSS+1)
76 #ifndef VMS_LONGNAME_SUPPORT
77 #define VMS_LONGNAME_SUPPORT 1
78 #endif /* VMS_LONGNAME_SUPPORT */
79 #endif /* NAML$C_MAXRSS */
80 #endif /* VMS_MAXRSS */
81 #endif
82
83 #ifndef VMS_MAXRSS
84 #define VMS_MAXRSS (NAM$C_MAXRSS + 1)
85 #endif
86
87 #ifndef MAXPATHLEN
88 #define MAXPATHLEN (VMS_MAXRSS - 1)
89 #endif
90
91
92 /* Note that we do, in fact, have this */
93 #define HAS_GETENV_SV
94 #define HAS_GETENV_LEN
95
96 /* All this stiff is for the x2P programs. Hopefully they'll still work */
97 #if defined(PERL_FOR_X2P)
98 #ifndef aTHX_
99 #define aTHX_
100 #endif
101 #ifndef pTHX_
102 #define pTHX_
103 #endif
104 #ifndef pTHX
105 #define pTHX
106 #endif
107 #endif
108
109 #ifndef DONT_MASK_RTL_CALLS
110 #  ifdef getenv
111 #    undef getenv
112 #  endif
113   /* getenv used for regular logical names */
114 #  define getenv(v) Perl_my_getenv(aTHX_ v,TRUE)
115 #endif
116 #ifdef getenv_len
117 #  undef getenv_len
118 #endif
119 #define getenv_len(v,l) Perl_my_getenv_len(aTHX_ v,l,TRUE)
120
121 /* DECC introduces this routine in the RTL as of VMS 7.0; for now,
122  * we'll use ours, since it gives us the full VMS exit status. */
123 #define waitpid my_waitpid
124
125 /* Don't redeclare standard RTL routines in Perl's header files;
126  * VMS history or extensions makes some of the formal protoypes
127  * differ from the common Unix forms.
128  */
129 #define DONT_DECLARE_STD 1
130
131 /* Our own contribution to PerlShr's global symbols . . . */
132 #define prime_env_iter  Perl_prime_env_iter
133 #define vms_image_init  Perl_vms_image_init
134 #define my_tmpfile              Perl_my_tmpfile
135 #define vmstrnenv               Perl_vmstrnenv            
136 #if !defined(PERL_IMPLICIT_CONTEXT)
137 #define my_getenv_len           Perl_my_getenv_len
138 #define vmssetenv               Perl_vmssetenv
139 #define my_trnlnm               Perl_my_trnlnm
140 #define my_setenv               Perl_my_setenv
141 #define my_getenv               Perl_my_getenv
142 #define tounixspec              Perl_tounixspec
143 #define tounixspec_ts           Perl_tounixspec_ts
144 #define tounixspec_utf8         Perl_tounixspec_utf8
145 #define tounixspec_utf8_ts      Perl_tounixspec_utf8_ts
146 #define tovmsspec               Perl_tovmsspec
147 #define tovmsspec_ts            Perl_tovmsspec_ts
148 #define tovmsspec_utf8          Perl_tovmsspec_utf8
149 #define tovmsspec_utf8_ts       Perl_tovmsspec_utf8_ts
150 #define tounixpath              Perl_tounixpath
151 #define tounixpath_ts           Perl_tounixpath_ts
152 #define tounixpath_utf8         Perl_tounixpath_utf8
153 #define tounixpath_utf8_ts      Perl_tounixpath_utf8_ts
154 #define tovmspath               Perl_tovmspath 
155 #define tovmspath_ts            Perl_tovmspath_ts
156 #define tovmspath_utf8          Perl_tovmspath_utf8
157 #define tovmspath_utf8_ts       Perl_tovmspath_utf8_ts
158 #define do_rmdir                Perl_do_rmdir
159 #define fileify_dirspec         Perl_fileify_dirspec
160 #define fileify_dirspec_ts      Perl_fileify_dirspec_ts
161 #define fileify_dirspec_utf8    Perl_fileify_dirspec_utf8
162 #define fileify_dirspec_utf8_ts Perl_fileify_dirspec_utf8_ts
163 #define pathify_dirspec         Perl_pathify_dirspec
164 #define pathify_dirspec_ts      Perl_pathify_dirspec_ts
165 #define pathify_dirspec_utf8    Perl_pathify_dirspec_utf8
166 #define pathify_dirspec_utf8_ts Perl_pathify_dirspec_utf8_ts
167 #define trim_unixpath           Perl_trim_unixpath
168 #define opendir                 Perl_opendir
169 #define rename                  Perl_rename
170 #define rmscopy                 Perl_rmscopy
171 #define my_mkdir                Perl_my_mkdir
172 #define vms_do_aexec            Perl_vms_do_aexec
173 #define vms_do_exec             Perl_vms_do_exec
174 #define my_waitpid              Perl_my_waitpid
175 #define my_crypt                Perl_my_crypt
176 #define kill_file               Perl_kill_file
177 #define my_utime                Perl_my_utime
178 #define my_chdir                Perl_my_chdir
179 #define my_chmod                Perl_my_chmod
180 #define do_aspawn               Perl_do_aspawn
181 #define seekdir                 Perl_seekdir
182 #define my_gmtime               Perl_my_gmtime
183 #define my_localtime            Perl_my_localtime
184 #define my_time                 Perl_my_time
185 #define do_spawn                Perl_do_spawn
186 #define flex_fstat              Perl_flex_fstat
187 #define flex_stat               Perl_flex_stat
188 #define flex_lstat              Perl_flex_lstat
189 #define cando_by_name           Perl_cando_by_name
190 #define my_getpwnam             Perl_my_getpwnam
191 #define my_getpwuid             Perl_my_getpwuid
192 #define my_flush                Perl_my_flush
193 #define readdir                 Perl_readdir
194 #define readdir_r               Perl_readdir_r
195 #else
196 #define my_getenv_len(a,b,c)    Perl_my_getenv_len(aTHX_ a,b,c)
197 #define vmssetenv(a,b,c)        Perl_vmssetenv(aTHX_ a,b,c)
198 #define my_trnlnm(a,b,c)        Perl_my_trnlnm(aTHX_ a,b,c)
199 #define fileify_dirspec(a,b)    Perl_fileify_dirspec(aTHX_ a,b)
200 #define fileify_dirspec_ts(a,b) Perl_fileify_dirspec_ts(aTHX_ a,b)
201 #define my_setenv(a,b)          Perl_my_setenv(aTHX_ a,b)
202 #define my_getenv(a,b)          Perl_my_getenv(aTHX_ a,b)
203 #define tounixspec(a,b)         Perl_tounixspec_utf8(aTHX_ a,b,NULL)
204 #define tounixspec_ts(a,b)      Perl_tounixspec_utf8_ts(aTHX_ a,b,NULL)
205 #define tounixspec_utf8(a,b,c)  Perl_tounixspec_utf8(aTHX_ a,b,c)
206 #define tounixspec_utf8_ts(a,b,c) Perl_tounixspec_utf8_ts(aTHX_ a,b,c)
207 #define tovmsspec(a,b)          Perl_tovmsspec_utf8(aTHX_ a,b,NULL)
208 #define tovmsspec_ts(a,b)       Perl_tovmsspec_utf8_ts(aTHX_ a,b)
209 #define tovmsspec_utf8(a,b,c)   Perl_tovmsspec_utf8(aTHX_ a,b,c)
210 #define tovmsspec_utf8_ts(a,b,c) Perl_tovmsspec_utf8_ts(aTHX_ a,b,c)
211 #define tounixpath(a,b)         Perl_tounixpath_utf8(aTHX_ a,b,NULL)
212 #define tounixpath_ts(a,b)      Perl_tounixpath_utf8_ts(aTHX_ a,b,NULL)
213 #define tounixpath_utf8(a,b,c)  Perl_tounixpath_utf8(aTHX_ a,b,c)
214 #define tounixpath_utf8_ts(a,b,c) Perl_tounixpath_utf8_ts(aTHX_ a,b,c)
215 #define tovmspath(a,b)          Perl_tovmspath_utf8(aTHX_ a,b,NULL)
216 #define tovmspath_ts(a,b)       Perl_tovmspath_utf8_ts(aTHX_ a,b,NULL)
217 #define tovmspath_utf8(a,b,c)   Perl_tovmspath_utf8(aTHX_ a,b,c)
218 #define tovmspath_utf8_ts(a,b,c) Perl_tovmspath_utf8_ts(aTHX_ a,b,c)
219 #define do_rmdir(a)             Perl_do_rmdir(aTHX_ a)
220 #define fileify_dirspec(a,b)    Perl_fileify_dirspec(aTHX_ a,b)
221 #define fileify_dirspec_ts(a,b) Perl_fileify_dirspec_ts(aTHX_ a,b)
222 #define fileify_dirspec_utf8(a,b,c) Perl_fileify_dirspec(aTHX_ a,b,utf8)
223 #define fileify_dirspec_utf8_ts(a,b,c) Perl_fileify_dirspec_ts(aTHX_ a,b,utf8)
224 #define pathify_dirspec         Perl_pathify_dirspec
225 #define pathify_dirspec_ts      Perl_pathify_dirspec_ts
226 #define pathify_dirspec_utf8    Perl_pathify_dirspec_utf8
227 #define pathify_dirspec_utf8_ts Perl_pathify_dirspec_utf8_ts
228 #define rmsexpand(a,b,c,d)      Perl_rmsexpand_utf8(aTHX_ a,b,c,d,NULL,NULL)
229 #define rmsexpand_ts(a,b,c,d)   Perl_rmsexpand_utf8_ts(aTHX_ a,b,c,d,NULL,NULL)
230 #define rmsexpand_utf8(a,b,c,d,e,f) Perl_rmsexpand_utf8(aTHX_ a,b,c,d,e,f)
231 #define rmsexpand_utf8_ts(a,b,c,d,e,f) Perl_rmsexpand_utf8_ts(aTHX_ a,b,c,d,e,f)
232 #define trim_unixpath(a,b,c)    Perl_trim_unixpath(aTHX_ a,b,c)
233 #define opendir(a)              Perl_opendir(aTHX_ a)
234 #define rename(a,b)             Perl_rename(aTHX_ a,b)
235 #define rmscopy(a,b,c)          Perl_rmscopy(aTHX_ a,b,c)
236 #define my_mkdir(a,b)           Perl_my_mkdir(aTHX_ a,b)
237 #define vms_do_aexec(a,b,c)     Perl_vms_do_aexec(aTHX_ a,b,c)
238 #define vms_do_exec(a)          Perl_vms_do_exec(aTHX_ a)
239 #define my_waitpid(a,b,c)       Perl_my_waitpid(aTHX_ a,b,c)
240 #define my_crypt(a,b)           Perl_my_crypt(aTHX_ a,b)
241 #define kill_file(a)            Perl_kill_file(aTHX_ a)
242 #define my_utime(a,b)           Perl_my_utime(aTHX_ a,b)
243 #define my_chdir(a)             Perl_my_chdir(aTHX_ a)
244 #define my_chmod(a,b)           Perl_my_chmod(aTHX_ a,b)
245 #define do_aspawn(a,b,c)        Perl_do_aspawn(aTHX_ a,b,c)
246 #define seekdir(a,b)            Perl_seekdir(aTHX_ a,b)
247 #define my_gmtime(a)            Perl_my_gmtime(aTHX_ a)
248 #define my_localtime(a)         Perl_my_localtime(aTHX_ a)
249 #define my_time(a)              Perl_my_time(aTHX_ a)
250 #define do_spawn(a)             Perl_do_spawn(aTHX_ a)
251 #define flex_fstat(a,b)         Perl_flex_fstat(aTHX_ a,b)
252 #define cando_by_name(a,b,c)    Perl_cando_by_name(aTHX_ a,b,c)
253 #define flex_stat(a,b)          Perl_flex_stat(aTHX_ a,b)
254 #define flex_lstat(a,b)         Perl_flex_lstat(aTHX_ a,b)
255 #define my_getpwnam(a)          Perl_my_getpwnam(aTHX_ a)
256 #define my_getpwuid(a)          Perl_my_getpwuid(aTHX_ a)
257 #define my_flush(a)             Perl_my_flush(aTHX_ a)
258 #define readdir(a)              Perl_readdir(aTHX_ a)
259 #define readdir_r(a,b,c)        Perl_readdir_r(aTHX_ a,b,c)
260 #endif
261 #define my_gconvert             Perl_my_gconvert
262 #define telldir                 Perl_telldir
263 #define closedir                Perl_closedir
264 #define vmsreaddirversions      Perl_vmsreaddirversions
265 #define my_sigemptyset        Perl_my_sigemptyset
266 #define my_sigfillset         Perl_my_sigfillset
267 #define my_sigaddset          Perl_my_sigaddset
268 #define my_sigdelset          Perl_my_sigdelset
269 #define my_sigismember        Perl_my_sigismember
270 #define my_sigprocmask        Perl_my_sigprocmask
271 #define my_vfork                Perl_my_vfork
272 #define my_fdopen               Perl_my_fdopen
273 #define my_fclose               Perl_my_fclose
274 #define my_fwrite               Perl_my_fwrite
275 #define my_getpwent()           Perl_my_getpwent(aTHX)
276 #define my_endpwent()           Perl_my_endpwent(aTHX)
277 #define my_getlogin             Perl_my_getlogin
278 #ifdef HAS_SYMLINK
279 #  define my_symlink(a, b)      Perl_my_symlink(aTHX_ a, b)
280 #endif
281 #define init_os_extras          Perl_init_os_extras
282 #define vms_realpath(a, b, c)   Perl_vms_realpath(aTHX_ a,b,c)
283 #define vms_realname(a, b, c)   Perl_vms_realname(aTHX_ a,b,c)
284 #define vms_case_tolerant(a)    Perl_vms_case_tolerant(a)
285
286 /* Delete if at all possible, changing protections if necessary. */
287 #define unlink kill_file
288
289 /* 
290  * Intercept calls to fork, so we know whether subsequent calls to
291  * exec should be handled in VMSish or Unixish style.
292  */
293 #define fork my_vfork
294 #ifndef DONT_MASK_RTL_CALLS     /* #defined in vms.c so we see real vfork */
295 #  ifdef vfork
296 #    undef vfork
297 #  endif
298 #  define vfork my_vfork
299 #endif
300
301 /*
302  * Toss in a shim to tmpfile which creates a plain temp file if the
303  * RMS tmp mechanism won't work (e.g. if someone is relying on ACLs
304  * from a specific directory to permit creation of files).
305  */
306 #ifndef DONT_MASK_RTL_CALLS
307 #  define tmpfile Perl_my_tmpfile
308 #endif
309
310
311 /* BIG_TIME:
312  *      This symbol is defined if Time_t is an unsigned type on this system.
313  */
314 #define BIG_TIME
315
316 /* ACME_MESS:
317  *      This symbol, if defined, indicates that error messages should be 
318  *      should be generated in a format that allows the use of the Acme
319  *      GUI/editor's autofind feature.
320  */
321 #undef ACME_MESS        /**/
322
323 /* ALTERNATE_SHEBANG:
324  *      This symbol, if defined, contains a "magic" string which may be used
325  *      as the first line of a Perl program designed to be executed directly
326  *      by name, instead of the standard Unix #!.  If ALTERNATE_SHEBANG
327  *      begins with a character other then #, then Perl will only treat
328  *      it as a command line if if finds the string "perl" in the first
329  *      word; otherwise it's treated as the first line of code in the script.
330  *      (IOW, Perl won't hand off to another interpreter via an alternate
331  *      shebang sequence that might be legal Perl code.)
332  */
333 #define ALTERNATE_SHEBANG "$"
334
335 /* Lower case entry points for these are missing in some earlier RTLs 
336  * so we borrow the defines and declares from errno.h and upcase them.
337  */
338 #if defined(VMS_WE_ARE_CASE_SENSITIVE) && (__DECC_VER < 50500000)
339 #  define errno      (*CMA$TIS_ERRNO_GET_ADDR())
340 #  define vaxc$errno (*CMA$TIS_VMSERRNO_GET_ADDR())
341    int *CMA$TIS_ERRNO_GET_ADDR     (void);   /* UNIX style error code        */
342    int *CMA$TIS_VMSERRNO_GET_ADDR  (void);   /* VMS error (errno == EVMSERR) */
343 #endif
344
345 /* Macros to set errno using the VAX thread-safe calls, if present */
346 #if (defined(__DECC) || defined(__DECCXX)) && !defined(__ALPHA)
347 #  define set_errno(v)      (cma$tis_errno_set_value(v))
348    void cma$tis_errno_set_value(int __value);  /* missing in some errno.h */
349 #  define set_vaxc_errno(v) (vaxc$errno = (v))
350 #else
351 #  define set_errno(v)      (errno = (v))
352 #  define set_vaxc_errno(v) (vaxc$errno = (v))
353 #endif
354
355 /* Support for 'vmsish' behaviors enabled with C<use vmsish> pragma */
356
357 #define COMPLEX_STATUS  1       /* We track both "POSIX" and VMS values */
358
359 #define HINT_V_VMSISH           24
360 #define HINT_M_VMSISH_STATUS    0x40000000 /* system, $? return VMS status */
361 #define HINT_M_VMSISH_TIME      0x80000000 /* times are local, not UTC */
362 #define NATIVE_HINTS            (PL_hints >> HINT_V_VMSISH)  /* used in op.c */
363
364 #define TEST_VMSISH(h)  (PL_curcop->op_private & ((h) >> HINT_V_VMSISH))
365 #define VMSISH_STATUS   TEST_VMSISH(HINT_M_VMSISH_STATUS)
366 #define VMSISH_TIME     TEST_VMSISH(HINT_M_VMSISH_TIME)
367
368 /* VMS-specific data storage */
369
370 #define HAVE_INTERP_INTERN
371 struct interp_intern {
372     int    hushed;
373     int    posix_exit;
374     double inv_rand_max;
375 };
376 #define VMSISH_HUSHED     (PL_sys_intern.hushed)
377 #define MY_INV_RAND_MAX   (PL_sys_intern.inv_rand_max)
378 #define MY_POSIX_EXIT   (PL_sys_intern.posix_exit)
379
380 /* Flags for vmstrnenv() */
381 #define PERL__TRNENV_SECURE 0x01
382 #define PERL__TRNENV_JOIN_SEARCHLIST 0x02
383
384 /* Handy way to vet calls to VMS system services and RTL routines. */
385 #define _ckvmssts(call) STMT_START { register unsigned long int __ckvms_sts; \
386   if (!((__ckvms_sts=(call))&1)) { \
387   set_errno(EVMSERR); set_vaxc_errno(__ckvms_sts); \
388   Perl_croak(aTHX_ "Fatal VMS error (status=%d) at %s, line %d", \
389   __ckvms_sts,__FILE__,__LINE__); } } STMT_END
390
391 /* Same thing, but don't call back to Perl's croak(); useful for errors
392  * occurring during startup, before Perl's state is initialized */
393 #define _ckvmssts_noperl(call) STMT_START { register unsigned long int __ckvms_sts; \
394   if (!((__ckvms_sts=(call))&1)) { \
395   set_errno(EVMSERR); set_vaxc_errno(__ckvms_sts); \
396   fprintf(stderr,"Fatal VMS error (status=%d) at %s, line %d", \
397   __ckvms_sts,__FILE__,__LINE__); lib$signal(__ckvms_sts); } } STMT_END
398
399 #ifdef VMS_DO_SOCKETS
400 #include "sockadapt.h"
401 #define PERL_SOCK_SYSREAD_IS_RECV
402 #define PERL_SOCK_SYSWRITE_IS_SEND
403 #endif
404
405 #if __CRTL_VER < 70000000
406 #define BIT_BUCKET "_NLA0:"
407 #else
408 #define BIT_BUCKET "/dev/null"
409 #endif
410 #define PERL_SYS_INIT_BODY(c,v) MALLOC_CHECK_TAINT2(*c,*v) vms_image_init((c),(v)); PERLIO_INIT; MALLOC_INIT
411 #define PERL_SYS_TERM_BODY()            HINTS_REFCNT_TERM; OP_REFCNT_TERM; PERLIO_TERM; MALLOC_TERM
412 #define dXSUB_SYS
413 #define HAS_KILL
414 #define HAS_WAIT
415
416 #define PERL_FS_VER_FMT         "%d_%d_%d"
417 /* Temporary; we need to add support for this to Configure.Com */
418 #ifdef PERL_INC_VERSION_LIST
419 #  undef PERL_INC_VERSION_LIST
420 #endif
421
422 /* VMS:
423  *      This symbol, if defined, indicates that the program is running under
424  *      VMS.  It's a symbol automagically defined by all VMS C compilers I've seen.
425  * Just in case, however . . . */
426 /* Note that code really should be using __VMS to comply with ANSI */
427 #ifndef VMS
428 #define VMS             /**/
429 #endif
430
431 /* HAS_IOCTL:
432  *      This symbol, if defined, indicates that the ioctl() routine is
433  *      available to set I/O characteristics
434  */
435 #if defined(__CRTL_VER) && __CRTL_VER >= 70000000
436 #define HAS_IOCTL               /**/
437 #else
438 #undef  HAS_IOCTL               /**/
439 #endif
440  
441 /* HAS_UTIME:
442  *      This symbol, if defined, indicates that the routine utime() is
443  *      available to update the access and modification times of files.
444  */
445 #define HAS_UTIME               /**/
446
447 /* HAS_GROUP
448  *      This symbol, if defined, indicates that the getgrnam() and
449  *      getgrgid() routines are available to get group entries.
450  *      The getgrent() has a separate definition, HAS_GETGRENT.
451  */
452 #if __CRTL_VER >= 70302000
453 #define HAS_GROUP               /**/
454 #else
455 #undef HAS_GROUP                /**/
456 #endif
457
458 /* HAS_PASSWD
459  *      This symbol, if defined, indicates that the getpwnam() and
460  *      getpwuid() routines are available to get password entries.
461  *      The getpwent() has a separate definition, HAS_GETPWENT.
462  */
463 #define HAS_PASSWD              /**/
464
465 #define HAS_KILL
466 #define HAS_WAIT
467   
468 /* USEMYBINMODE
469  *      This symbol, if defined, indicates that the program should
470  *      use the routine my_binmode(FILE *fp, char iotype, int mode) to insure
471  *      that a file is in "binary" mode -- that is, that no translation
472  *      of bytes occurs on read or write operations.
473  */
474 #undef USEMYBINMODE
475
476 /* Stat_t:
477  *      This symbol holds the type used to declare buffers for information
478  *      returned by stat().  It's usually just struct stat.  It may be necessary
479  *      to include <sys/stat.h> and <sys/types.h> to get any typedef'ed
480  *      information.
481  */
482 /* VMS:
483  * We need this typedef to point to the new type even if DONT_MASK_RTL_CALLS
484  * is in effect, since Perl's thread.h embeds one of these structs in its
485  * thread data struct, and our struct mystat is a different size from the
486  * regular struct stat (cf. note above about having to pad struct to work
487  * around bug in compiler.)
488  * It's OK to pass one of these to the RTL's stat(), though, since the
489  * fields it fills are the same in each struct.
490  */
491 #define Stat_t struct mystat
492
493 /* USE_STAT_RDEV:
494 *       This symbol is defined if this system has a stat structure declaring
495 *       st_rdev
496 *       VMS: Field exists in POSIXish version of struct stat(), but is not used.
497 *
498 *  No definition of what value an operating system or file system should
499 *  put in the st_rdev field has been found by me so far.  Examination of
500 *  LINUX source code indicates that the value is both very platform and
501 *  file system specific, with many filesystems just putting 1 or 0 in it.
502 *  J. Malmberg.
503 */
504 #undef USE_STAT_RDEV            /**/
505
506 /*
507  * fwrite1() should be a routine with the same calling sequence as fwrite(),
508  * but which outputs all of the bytes requested as a single stream (unlike
509  * fwrite() itself, which on some systems outputs several distinct records
510  * if the number_of_items parameter is >1).
511  */
512 #define fwrite1 my_fwrite
513
514
515 #ifndef DONT_MASK_RTL_CALLS
516 #  define fwrite my_fwrite     /* for PerlSIO_fwrite */
517 #  define fdopen my_fdopen
518 #  define fclose my_fclose
519 #ifdef HAS_SYMLINK
520 #  define symlink my_symlink
521 #endif
522 #endif
523
524
525 /* By default, flush data all the way to disk, not just to RMS buffers */
526 #define Fflush(fp) my_flush(fp)
527
528 /* Use our own rmdir() */
529 #ifndef DONT_MASK_RTL_CALLS
530 #define rmdir(name) do_rmdir(name)
531 #endif
532
533 /* Assorted fiddling with sigs . . . */
534 # include <signal.h>
535 #define ABORT() abort()
536
537 #ifdef I_UTIME
538 #include <utime.h>
539 #else
540 /* Used with our my_utime() routine in vms.c */
541 struct utimbuf {
542   time_t actime;
543   time_t modtime;
544 };
545 #endif
546 #ifndef DONT_MASK_RTL_CALLS
547 #define utime my_utime
548 #endif
549
550 /* This is what times() returns, but <times.h> calls it tbuffer_t on VMS
551  * prior to v7.0.  We check the DECC manifest to see whether it's already
552  * done this for us, relying on the fact that perl.h #includes <time.h>
553  * before it #includes "vmsish.h".
554  */
555
556 #ifndef __TMS
557   struct tms {
558     clock_t tms_utime;    /* user time */
559     clock_t tms_stime;    /* system time - always 0 on VMS */
560     clock_t tms_cutime;   /* user time, children */
561     clock_t tms_cstime;   /* system time, children - always 0 on VMS */
562   };
563 #else
564    /* The new headers change the times() prototype to tms from tbuffer */
565 #  define tbuffer_t struct tms
566 #endif
567
568 /* Substitute our own routines for gmtime(), localtime(), and time(),
569  * which allow us to implement the vmsish 'time' pragma, and work
570  * around absence of system-level UTC support on old versions of VMS.
571  */
572 #define gmtime(t) my_gmtime(t)
573 #define localtime(t) my_localtime(t)
574 #define time(t) my_time(t)
575
576 /* If we're using an older version of VMS whose Unix signal emulation
577  * isn't very POSIXish, then roll our own.
578  */
579 #if __VMS_VER < 70000000 || __DECC_VER < 50200000
580 #  define HOMEGROWN_POSIX_SIGNALS
581 #endif
582 #ifdef HOMEGROWN_POSIX_SIGNALS
583 #  define sigemptyset(t) my_sigemptyset(t)
584 #  define sigfillset(t) my_sigfillset(t)
585 #  define sigaddset(t, u) my_sigaddset(t, u)
586 #  define sigdelset(t, u) my_sigdelset(t, u)
587 #  define sigismember(t, u) my_sigismember(t, u)
588 #  define sigprocmask(t, u, v) my_sigprocmask(t, u, v)
589 #  ifndef _SIGSET_T
590    typedef int sigset_t;
591 #  endif
592    /* The tools for sigprocmask() are there, just not the routine itself */
593 #  ifndef SIG_UNBLOCK
594 #    define SIG_UNBLOCK 1
595 #  endif
596 #  ifndef SIG_BLOCK
597 #    define SIG_BLOCK 2
598 #  endif
599 #  ifndef SIG_SETMASK
600 #    define SIG_SETMASK 3
601 #  endif
602 #  define sigaction sigvec
603 #  define sa_flags sv_onstack
604 #  define sa_handler sv_handler
605 #  define sa_mask sv_mask
606 #  define sigsuspend(set) sigpause(*set)
607 #  define sigpending(a) (not_here("sigpending"),0)
608 #else
609 /*
610  * The C RTL's sigaction fails to check for invalid signal numbers so we 
611  * help it out a bit.
612  */
613 #  ifndef DONT_MASK_RTL_CALLS
614 #    define sigaction(a,b,c) Perl_my_sigaction(aTHX_ a,b,c)
615 #  endif
616 #endif
617 #ifdef KILL_BY_SIGPRC
618 #  define kill  Perl_my_kill
619 #endif
620
621
622 /* VMS doesn't use a real sys_nerr, but we need this when scanning for error
623  * messages in text strings . . .
624  */
625
626 #define sys_nerr EVMSERR  /* EVMSERR is as high as we can go. */
627
628 /* Look up new %ENV values on the fly */
629 #define DYNAMIC_ENV_FETCH 1
630   /* Special getenv function for retrieving %ENV elements. */
631 #define ENVgetenv(v) my_getenv(v,FALSE)
632 #define ENVgetenv_len(v,l) my_getenv_len(v,l,FALSE)
633
634
635 /* Thin jacket around cuserid() to match Unix' calling sequence */
636 #define getlogin my_getlogin
637
638 /* Ditto for sys$hash_password() . . . */
639 #define crypt(a,b)  Perl_my_crypt(aTHX_ a,b)
640
641 /* Tweak arg to mkdir & chdir first, so we can tolerate trailing /. */
642 #define Mkdir(dir,mode) Perl_my_mkdir(aTHX_ (dir),(mode))
643 #define Chdir(dir) my_chdir((dir))
644 #ifndef DONT_MASK_RTL_CALLS
645 #define chmod(file_spec, mode) my_chmod((file_spec), (mode))
646 #endif
647
648 /* Use our own stat() clones, which handle Unix-style directory names */
649 #define Stat(name,bufptr) flex_stat(name,bufptr)
650 #define Fstat(fd,bufptr) Perl_flex_fstat(aTHX_ fd,bufptr)
651 #ifndef DONT_MASK_RTL_CALLS
652 #define lstat(name, bufptr) flex_lstat(name, bufptr)
653 #endif
654
655 /* Setup for the dirent routines:
656  * opendir(), closedir(), readdir(), seekdir(), telldir(), and
657  * vmsreaddirversions(), and preprocessor stuff on which these depend:
658  *    Written by Rich $alz, <rsalz@bbn.com> in August, 1990.
659  *
660  */
661
662 /* Flags for the _dirdesc structure */
663 #define PERL_VMSDIR_M_VERSIONS          0x02 /* Want VMS versions */
664 #define PERL_VMSDIR_M_UNIXSPECS         0x04 /* Want UNIX specifications */
665
666
667     /* Data structure returned by READDIR(). */
668 struct dirent {
669     char        d_name[256];            /* File name            */
670     int         d_namlen;               /* Length of d_name */
671     int         vms_verscount;          /* Number of versions   */
672     int         vms_versions[20];       /* Version numbers      */
673 };
674
675     /* Handle returned by opendir(), used by the other routines.  You
676      * are not supposed to care what's inside this structure. */
677 typedef struct _dirdesc {
678     long                        context;
679     int                         flags;
680     unsigned long int           count;
681     char                        *pattern;
682     struct dirent               entry;
683     struct dsc$descriptor_s     pat;
684     void                        *mutex;
685 } DIR;
686
687
688 #define rewinddir(dirp)         seekdir((dirp), 0)
689
690 /* used for our emulation of getpw* */
691 struct passwd {
692         char    *pw_name;    /* Username */
693         char    *pw_passwd;
694         Uid_t   pw_uid;      /* UIC member number */
695         Gid_t   pw_gid;      /* UIC group  number */
696         char    *pw_comment; /* Default device/directory (Unix-style) */
697         char    *pw_gecos;   /* Owner */
698         char    *pw_dir;     /* Default device/directory (VMS-style) */
699         char    *pw_shell;   /* Default CLI name (eg. DCL) */
700 };
701 #define pw_unixdir pw_comment  /* Default device/directory (Unix-style) */
702 #define getpwnam my_getpwnam
703 #define getpwuid my_getpwuid
704 #define getpwent my_getpwent
705 #define endpwent my_endpwent
706 #define setpwent my_endpwent
707
708 /* Our own stat_t substitute, since we play with st_dev and st_ino -
709  * we want atomic types so Unix-bound code which compares these fields
710  * for two files will work most of the time under VMS.
711  * N.B. 1. The st_ino hack assumes that sizeof(unsigned short[3]) ==
712  * sizeof(unsigned) + sizeof(unsigned short).  We can't use a union type
713  * to map the unsigned int we want and the unsigned short[3] the CRTL
714  * returns into the same member, since gcc has different ideas than DECC
715  * and VAXC about sizing union types.
716  * N.B. 2. The routine cando() in vms.c assumes that &stat.st_ino is the
717  * address of a FID.
718  */
719 /* First, grab the system types, so we don't clobber them later */
720 #include <stat.h>
721 /* Since we've got to match the size of the CRTL's stat_t, we need
722  * to mimic DECC's alignment settings.
723  *
724  * The simplest thing is to just put a wrapper around the stat structure
725  * supplied by the CRTL and use #defines to redirect references to the
726  * members to the real names.
727  */
728
729 #if defined(__DECC) || defined(__DECCXX)
730 #  pragma __member_alignment __save
731 #  pragma member_alignment
732 #endif
733
734 typedef unsigned mydev_t;
735 #ifndef _LARGEFILE
736 typedef unsigned myino_t;
737 #else
738 typedef __ino64_t myino_t;
739 #endif
740
741 struct mystat
742 {
743     struct stat crtl_stat;
744     myino_t st_ino;
745 #ifndef _LARGEFILE
746     unsigned rvn; /* FID (num,seq,rvn) + pad */
747 #endif
748     mydev_t st_dev;
749     char st_devnam[256]; /* Cache the (short) VMS name */
750 };
751
752 #define st_mode crtl_stat.st_mode
753 #define st_nlink crtl_stat.st_nlink
754 #define st_uid crtl_stat.st_uid
755 #define st_gid crtl_stat.st_gid
756 #define st_rdev crtl_stat.st_rdev
757 #define st_size crtl_stat.st_size
758 #define st_atime crtl_stat.st_atime
759 #define st_mtime crtl_stat.st_mtime
760 #define st_ctime crtl_stat.st_ctime
761 #define st_fab_rfm crtl_stat.st_fab_rfm
762 #define st_fab_rat crtl_stat.st_fab_rat
763 #define st_fab_fsz crtl_stat.st_fab_fsz
764 #define st_fab_mrs crtl_stat.st_fab_mrs
765
766 #ifdef _USE_STD_STAT
767 #define VMS_INO_T_COMPARE(__a, __b) (__a != __b)
768 #define VMS_INO_T_COPY(__a, __b) __a = __b
769 #else
770 #define VMS_INO_T_COMPARE(__a, __b) memcmp(&__a, &__b, 6)
771 #define VMS_INO_T_COPY(__a, __b) memcpy(&__a, &__b, 6)
772 #endif
773
774 #if defined(__DECC) || defined(__DECCXX)
775 #  pragma __member_alignment __restore
776 #endif
777
778 /*
779  * DEC C previous to 6.0 corrupts the behavior of the /prefix
780  * qualifier with the extern prefix pragma.  This provisional
781  * hack circumvents this prefix pragma problem in previous 
782  * precompilers.
783  */
784 #if defined(__VMS_VER) && __VMS_VER >= 70000000
785 #  if defined(VMS_WE_ARE_CASE_SENSITIVE) && (__DECC_VER < 60000000)
786 #    pragma __extern_prefix save
787 #    pragma __extern_prefix ""  /* set to empty to prevent prefixing */
788 #    define geteuid decc$__unix_geteuid
789 #    define getuid decc$__unix_getuid
790 #    define stat(__p1,__p2)   decc$__utc_stat(__p1,__p2)
791 #    define fstat(__p1,__p2)  decc$__utc_fstat(__p1,__p2)
792 #    pragma __extern_prefix restore
793 #  endif
794 #endif
795
796 #ifndef DONT_MASK_RTL_CALLS  /* defined for vms.c so we can see RTL calls */
797 #  ifdef stat
798 #    undef stat
799 #  endif
800 #  define stat mystat
801 #  define dev_t mydev_t
802 #  define ino_t myino_t
803 #endif
804 /* Cons up a 'delete' bit for testing access */
805 #define S_IDUSR (S_IWUSR | S_IXUSR)
806 #define S_IDGRP (S_IWGRP | S_IXGRP)
807 #define S_IDOTH (S_IWOTH | S_IXOTH)
808
809
810 /* Prototypes for functions unique to vms.c.  Don't include replacements
811  * for routines in the mainline source files excluded by #ifndef VMS;
812  * their prototypes are already in proto.h.
813  *
814  * In order to keep Gen_ShrFls.Pl happy, functions which are to be made
815  * available to images linked to PerlShr.Exe must be declared between the
816  * __VMS_PROTOTYPES__ and __VMS_SEPYTOTORP__ lines, and must be in the form
817  *    <data type><TAB>name<WHITESPACE>(<prototype args>);
818  */
819
820 #ifdef NO_PERL_TYPEDEFS
821   /* We don't have Perl typedefs available (e.g. when building a2p), so
822      we fake them here.  N.B.  There is *no* guarantee that the faked
823      prototypes will actually match the real routines.  If you want to
824      call Perl routines, include perl.h to get the real typedefs.  */
825 #  ifndef bool
826 #    define bool int
827 #    define __MY_BOOL_TYPE_FAKE
828 #  endif
829 #  ifndef I32
830 #    define I32  int
831 #    define __MY_I32_TYPE_FAKE
832 #  endif
833 #  ifndef SV
834 #    define SV   void   /* Since we only see SV * in prototypes */
835 #    define __MY_SV_TYPE_FAKE
836 #  endif
837 #endif
838
839 void    prime_env_iter (void);
840 void    init_os_extras (void);
841 int     Perl_vms_status_to_unix(int vms_status, int child_flag);
842 int     Perl_unix_status_to_vms(int unix_status);
843 /* prototype section start marker; `typedef' passes through cpp */
844 typedef char  __VMS_PROTOTYPES__;
845 int     Perl_vmstrnenv (const char *, char *, unsigned long int, struct dsc$descriptor_s **, unsigned long int);
846 char *  Perl_vms_realpath (pTHX_ const char *, char *, int *);
847 #if !defined(PERL_IMPLICIT_CONTEXT)
848 int     Perl_vms_case_tolerant(void);
849 char *  Perl_my_getenv (const char *, bool);
850 int     Perl_my_trnlnm (const char *, char *, unsigned long int);
851 char *  Perl_tounixspec (const char *, char *);
852 char *  Perl_tounixspec_ts (const char *, char *);
853 char *  Perl_tounixspec_utf8 (const char *, char *, int *);
854 char *  Perl_tounixspec_utf8_ts (const char *, char *, int *);
855 char *  Perl_tovmsspec (const char *, char *);
856 char *  Perl_tovmsspec_ts (const char *, char *);
857 char *  Perl_tovmsspec_utf8 (const char *, char *, int *);
858 char *  Perl_tovmsspec_utf8_ts (const char *, char *, int *);
859 char *  Perl_tounixpath (const char *, char *);
860 char *  Perl_tounixpath_ts (const char *, char *);
861 char *  Perl_tounixpath_utf8 (const char *, char *, int *);
862 char *  Perl_tounixpath_utf8_ts (const char *, char *, int *);
863 char *  Perl_tovmspath (const char *, char *);
864 char *  Perl_tovmspath_ts (const char *, char *);
865 char *  Perl_tovmspath_utf8 (const char *, char *, int *);
866 char *  Perl_tovmspath_utf8_ts (const char *, char *, int *);
867 int     Perl_do_rmdir (const char *);
868 char *  Perl_fileify_dirspec (const char *, char *);
869 char *  Perl_fileify_dirspec_ts (const char *, char *);
870 char *  Perl_fileify_dirspec_utf8 (const char *, char *, int *);
871 char *  Perl_fileify_dirspec_utf8_ts (const char *, char *, int *);
872 char *  Perl_pathify_dirspec (const char *, char *);
873 char *  Perl_pathify_dirspec_ts (const char *, char *);
874 char *  Perl_pathify_dirspec_utf8 (const char *, char *, int *);
875 char *  Perl_pathify_dirspec_utf8_ts (const char *, char *, int *);
876 char *  Perl_rmsexpand (const char *, char *, const char *, unsigned);
877 char *  Perl_rmsexpand_ts (const char *, char *, const char *, unsigned);
878 char *  Perl_rmsexpand_utf8 (const char *, char *, const char *, unsigned, int *, int *);
879 char *  Perl_rmsexpand_utf8_ts (const char *, char *, const char *, unsigned, int *, int *);
880 int     Perl_trim_unixpath (char *, const char*, int);
881 DIR  * Perl_opendir (const char *);
882 int     Perl_rename(const char *, const char *);
883 int     Perl_rmscopy (const char *, const char *, int);
884 int     Perl_my_mkdir (const char *, Mode_t);
885 bool    Perl_vms_do_aexec (SV *, SV **, SV **);
886 #else
887 char *  Perl_my_getenv (pTHX_ const char *, bool);
888 int     Perl_my_trnlnm (pTHX_ const char *, char *, unsigned long int);
889 char *  Perl_tounixspec (pTHX_ const char *, char *);
890 char *  Perl_tounixspec_ts (pTHX_ const char *, char *);
891 char *  Perl_tounixspec_utf8 (pTHX_ const char *, char *, int *);
892 char *  Perl_tounixspec_utf8_ts (pTHX_ const char *, char *, int *);
893 char *  Perl_tovmsspec (pTHX_ const char *, char *);
894 char *  Perl_tovmsspec_ts (pTHX_ const char *, char *);
895 char *  Perl_tovmsspec_utf8 (pTHX_ const char *, char *, int *);
896 char *  Perl_tovmsspec_utf8_ts (pTHX_ const char *, char *, int *);
897 char *  Perl_tounixpath (pTHX_ const char *, char *);
898 char *  Perl_tounixpath_ts (pTHX_ const char *, char *);
899 char *  Perl_tounixpath_utf8 (pTHX_ const char *, char *, int *);
900 char *  Perl_tounixpath_utf8_ts (pTHX_ const char *, char *, int *);
901 char *  Perl_tovmspath (pTHX_ const char *, char *);
902 char *  Perl_tovmspath_ts (pTHX_ const char *, char *);
903 char *  Perl_tovmspath_utf8 (pTHX_ const char *, char *, int *);
904 char *  Perl_tovmspath_utf8_ts (pTHX_ const char *, char *, int *);
905 int     Perl_do_rmdir (pTHX_ const char *);
906 char *  Perl_fileify_dirspec (pTHX_ const char *, char *);
907 char *  Perl_fileify_dirspec_ts (pTHX_ const char *, char *);
908 char *  Perl_fileify_dirspec_utf8 (pTHX_ const char *, char *, int *);
909 char *  Perl_fileify_dirspec_utf8_ts (pTHX_ const char *, char *, int *);
910 char *  Perl_pathify_dirspec (pTHX_ const char *, char *);
911 char *  Perl_pathify_dirspec_ts (pTHX_ const char *, char *);
912 char *  Perl_pathify_dirspec_utf8 (pTHX_ const char *, char *, int *);
913 char *  Perl_pathify_dirspec_utf8_ts (pTHX_ const char *, char *, int *);
914 char *  Perl_rmsexpand (pTHX_ const char *, char *, const char *, unsigned);
915 char *  Perl_rmsexpand_ts (pTHX_ const char *, char *, const char *, unsigned);
916 char *  Perl_rmsexpand_utf8 (pTHX_ const char *, char *, const char *, unsigned, int *, int *);
917 char *  Perl_rmsexpand_utf8_ts (pTHX_ const char *, char *, const char *, unsigned, int *, int *);
918 int     Perl_trim_unixpath (pTHX_ char *, const char*, int);
919 DIR * Perl_opendir (pTHX_ const char *);
920 int     Perl_rename (pTHX_ const char *, const char *);
921 int     Perl_rmscopy (pTHX_ const char *, const char *, int);
922 int     Perl_my_mkdir (pTHX_ const char *, Mode_t);
923 bool    Perl_vms_do_aexec (pTHX_ SV *, SV **, SV **);
924 #endif
925 int     Perl_vms_case_tolerant(void);
926 char *  Perl_my_getenv_len (pTHX_ const char *, unsigned long *, bool);
927 int     Perl_vmssetenv (pTHX_ const char *, const char *, struct dsc$descriptor_s **);
928 void    Perl_vmssetuserlnm(pTHX_ const char *name, const char *eqv);
929 char *  Perl_my_crypt (pTHX_ const char *, const char *);
930 Pid_t   Perl_my_waitpid (pTHX_ Pid_t, int *, int);
931 char *  my_gconvert (double, int, int, char *);
932 int     Perl_kill_file (pTHX_ const char *);
933 int     Perl_my_chdir (pTHX_ const char *);
934 int     Perl_my_chmod(pTHX_ const char *, mode_t);
935 FILE *  Perl_my_tmpfile (void);
936 #ifndef HOMEGROWN_POSIX_SIGNALS
937 int     Perl_my_sigaction (pTHX_ int, const struct sigaction*, struct sigaction*);
938 #endif
939 #ifdef KILL_BY_SIGPRC
940 unsigned int    Perl_sig_to_vmscondition (int);
941 int     Perl_my_kill (int, int);
942 void    Perl_csighandler_init (void);
943 #endif
944 int     Perl_my_utime (pTHX_ const char *, const struct utimbuf *);
945 void    Perl_vms_image_init (int *, char ***);
946 struct dirent * Perl_readdir (pTHX_ DIR *);
947 int     Perl_readdir_r(pTHX_ DIR *, struct dirent *, struct dirent **);
948 long    Perl_telldir (DIR *);
949 void    Perl_seekdir (pTHX_ DIR *, long);
950 void    Perl_closedir (DIR *);
951 void    vmsreaddirversions (DIR *, int);
952 struct tm *     Perl_my_gmtime (pTHX_ const time_t *);
953 struct tm *     Perl_my_localtime (pTHX_ const time_t *);
954 time_t  Perl_my_time (pTHX_ time_t *);
955 #ifdef HOMEGROWN_POSIX_SIGNALS
956 int     my_sigemptyset (sigset_t *);
957 int     my_sigfillset  (sigset_t *);
958 int     my_sigaddset   (sigset_t *, int);
959 int     my_sigdelset   (sigset_t *, int);
960 int     my_sigismember (sigset_t *, int);
961 int     my_sigprocmask (int, sigset_t *, sigset_t *);
962 #endif
963 I32     Perl_cando_by_name (pTHX_ I32, bool, const char *);
964 int     Perl_flex_fstat (pTHX_ int, Stat_t *);
965 int     Perl_flex_lstat (pTHX_ const char *, Stat_t *);
966 int     Perl_flex_stat (pTHX_ const char *, Stat_t *);
967 int     my_vfork (void);
968 bool    Perl_vms_do_exec (pTHX_ const char *);
969 FILE *  my_fdopen (int, const char *);
970 int     my_fclose (FILE *);
971 int     my_fwrite (const void *, size_t, size_t, FILE *);
972 #ifdef HAS_SYMLINK
973 int     Perl_my_symlink(pTHX_ const char *path1, const char *path2);
974 #endif
975 int     Perl_my_flush (pTHX_ FILE *);
976 struct passwd * Perl_my_getpwnam (pTHX_ const char *name);
977 struct passwd * Perl_my_getpwuid (pTHX_ Uid_t uid);
978 void    Perl_my_endpwent (pTHX);
979 char *  my_getlogin (void);
980 typedef char __VMS_SEPYTOTORP__;
981 /* prototype section end marker; `typedef' passes through cpp */
982
983 #ifdef NO_PERL_TYPEDEFS  /* We'll try not to scramble later files */
984 #  ifdef __MY_BOOL_TYPE_FAKE
985 #    undef bool
986 #    undef __MY_BOOL_TYPE_FAKE
987 #  endif
988 #  ifdef __MY_I32_TYPE_FAKE
989 #    undef I32
990 #    undef __MY_I32_TYPE_FAKE
991 #  endif
992 #  ifdef __MY_SV_TYPE_FAKE
993 #    undef SV
994 #    undef __MY_SV_TYPE_FAKE
995 #  endif
996 #endif
997
998 #ifndef VMS_DO_SOCKETS
999 /* This relies on tricks in perl.h to pick up that these manifest constants
1000  * are undefined and set up conversion routines.  It will then redefine
1001  * these manifest constants, so the actual values will match config.h
1002  */
1003 #undef HAS_HTONS
1004 #undef HAS_NTOHS
1005 #undef HAS_HTONL
1006 #undef HAS_NTOHL
1007 #endif
1008
1009 /* The C RTL manual says to undef the macro for DEC C 5.2 and lower. */
1010 #if defined(fileno) && defined(__DECC_VER) && __DECC_VER < 50300000
1011 #  undef fileno 
1012 #endif 
1013
1014 #define NO_ENVIRON_ARRAY
1015
1016 /* RMSEXPAND options */
1017 #define PERL_RMSEXPAND_M_VMS            0x02 /* Force output to VMS format */
1018 #define PERL_RMSEXPAND_M_LONG           0x04 /* Expand to long name format */
1019 #define PERL_RMSEXPAND_M_VMS_IN         0x08 /* Assume input is VMS already */
1020 #define PERL_RMSEXPAND_M_SYMLINK        0x20 /* Use symbolic link, not target */
1021
1022 #endif  /* __vmsish_h_included */