This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove some hardcoded references to ./perl in tests
[perl5.git] / vos / vosish.h
CommitLineData
196918b0 1#ifdef __GNUC__
36df99d6 2#include "../unixish.h"
196918b0
PG
3#else
4#include "unixish.h"
5#endif
868439a2
JH
6
7/* The following declaration is an avoidance for posix-950. */
8extern int ioctl (int fd, int request, ...);
7b2b351e
PG
9
10/* Specify a prototype for truncate() since we are supplying one. */
11extern int truncate (const char *path, off_t len);
a5f25d7a
PG
12
13/* Specify a prototype for socketpair() since we supplying one. */
14extern int socketpair (int family, int type, int protocol, int fd[2]);