This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
pp.c: Restore uninit warning to study
[perl5.git] / symbian / symbian_stubs.h
CommitLineData
27da23d5
JH
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
12int execv(const char* path, char* const argv []);
13int execvp(const char* path, char* const argv []);
14
15#ifndef USE_PERLIO
16FILE *popen(const char *command, const char *mode);
17int pclose(FILE *stream);
18#endif
19int pipe(int fd[2]);
20
21#endif /* PERL_SYMBIAN_STUBS_H */
22