This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Eliminate pre-5.9.x conditional code for PERL_PACK_CAN_BYTEORDER
[perl5.git] / symbian / symbian_stubs.h
1 /*
2  *      symbian_stubs.h
3  *
4  *      Copyright (c) Nokia 2004-2005.  All rights reserved.
5  *      This code is licensed under the same terms as Perl itself.
6  *
7  */
8
9 #ifndef PERL_SYMBIAN_STUBS_H
10 #define PERL_SYMBIAN_STUBS_H
11
12 int execv(const char* path, char* const argv []);
13 int execvp(const char* path, char* const argv []);
14
15 #ifndef USE_PERLIO
16 FILE *popen(const char *command, const char *mode);
17 int   pclose(FILE *stream);
18 #endif
19 int   pipe(int fd[2]);
20
21 #endif /* PERL_SYMBIAN_STUBS_H */
22