From e5726e132f7b2f3df557e7ffb6837c5e6dffc4b2 Mon Sep 17 00:00:00 2001 From: David Hedbor <david@hedbor.org> Date: Tue, 4 Feb 1997 17:22:55 -0800 Subject: [PATCH] =?UTF-8?q?add=5Fefun=20f=C3=B6r=20getppid=20pekade=20p?= =?UTF-8?q?=C3=A5=20f=5Fgetpid=20ist=C3=A4llet=20f=C3=B6r=20f=5Fgetppid?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rev: src/modules/system/system.c:1.10 --- src/modules/system/system.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/system/system.c b/src/modules/system/system.c index 241173eeac..b0ebf6f429 100644 --- a/src/modules/system/system.c +++ b/src/modules/system/system.c @@ -1,5 +1,5 @@ /* - * $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 -- GitLab