Skip to content
Snippets Groups Projects
Commit e5726e13 authored by David Hedbor's avatar David Hedbor
Browse files

add_efun för getppid pekade på f_getpid istället för f_getppid

Rev: src/modules/system/system.c:1.10
parent 4bf47b4b
Branches
Tags
No related merge requests found
/*
* $Id: system.c,v 1.9 1997/01/28 22:40:08 grubba Exp $
* $Id: system.c,v 1.10 1997/02/05 01:22:55 neotron Exp $
*
* System-call module for Pike
*
......@@ -14,7 +14,7 @@
#include "system.h"
#include <global.h>
RCSID("$Id: system.c,v 1.9 1997/01/28 22:40:08 grubba Exp $");
RCSID("$Id: system.c,v 1.10 1997/02/05 01:22:55 neotron Exp $");
#include <module_support.h>
#include <las.h>
#include <interpret.h>
......@@ -725,7 +725,7 @@ void init_system_efuns(void)
add_efun("getpid", f_getpid, "function(:int)", OPT_EXTERNAL_DEPEND);
#ifdef HAVE_GETPPID
add_efun("getppid", f_getpid, "function(:int)", OPT_EXTERNAL_DEPEND);
add_efun("getppid", f_getppid, "function(:int)", OPT_EXTERNAL_DEPEND);
#endif /* HAVE_GETPPID */
#ifdef HAVE_GETPGRP
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment