blob: ab6b9616cd2b6569a59fc8931756a6901a4446ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* symbian_stubs.h
*
* Copyright (c) Nokia 2004-2005. All rights reserved.
* This code is licensed under the same terms as Perl itself.
*
*/
#ifndef PERL_SYMBIAN_STUBS_H
#define PERL_SYMBIAN_STUBS_H
int execv(const char* path, char* const argv []);
int execvp(const char* path, char* const argv []);
#ifndef USE_PERLIO
FILE *popen(const char *command, const char *mode);
int pclose(FILE *stream);
#endif
int pipe(int fd[2]);
#endif /* PERL_SYMBIAN_STUBS_H */
|