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