diff options
author | Olaf Flebbe <o.flebbe@science-computing.de> | 1999-11-01 21:46:54 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-11-01 19:56:28 +0000 |
commit | 14bdf8d3bfc4c68a9e0d4420c4db2eccd669ea5d (patch) | |
tree | b47dacfff4349f9e1310cc5b25f8c5399cf938d4 /epoc/epoc_stubs.c | |
parent | faa2cb8c0495c9d7860866661a183a3885672f45 (diff) | |
download | perl-14bdf8d3bfc4c68a9e0d4420c4db2eccd669ea5d.tar.gz |
Patch for EPOC Support
To: perl5-porters@perl.org
Message-ID: <Pine.LNX.4.10.9911012045190.411-100000@dragon.science-computing.de>
p4raw-id: //depot/cfgperl@4506
Diffstat (limited to 'epoc/epoc_stubs.c')
-rw-r--r-- | epoc/epoc_stubs.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/epoc/epoc_stubs.c b/epoc/epoc_stubs.c new file mode 100644 index 0000000000..02430b7378 --- /dev/null +++ b/epoc/epoc_stubs.c @@ -0,0 +1,31 @@ +/* + * Copyright (c) 1999 Olaf Flebbe o.flebbe@gmx.de + * + * You may distribute under the terms of either the GNU General Public + * License or the Artistic License, as specified in the README file. + * + */ + +int getgid() {return 0;} +int getegid() {return 0;} +int geteuid() {return 0;} +int getuid() {return 0;} +int setgid() {return -1;} +int setuid() {return -1;} + +int Perl_my_popen( int a, int b) { + return 0; +} +int Perl_my_pclose( int a) { + return 0; +} + +kill() {} +signal() {} + +void execv() {} +void execvp() {} +void do_spawn() {} +void do_aspawn() {} +void Perl_do_exec() {} + |