diff options
Diffstat (limited to 'symbian/symbian_stubs.h')
-rw-r--r-- | symbian/symbian_stubs.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/symbian/symbian_stubs.h b/symbian/symbian_stubs.h new file mode 100644 index 0000000000..ab6b9616cd --- /dev/null +++ b/symbian/symbian_stubs.h @@ -0,0 +1,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 */ + |