From ac029489d06907aeb85ae243db84b6834e9d82aa Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 16 Apr 1991 08:39:39 +0000 Subject: [PATCH] Added pwd and grp modules --- Modules/config.c.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Modules/config.c.in b/Modules/config.c.in index 40facc271fd..543672309d2 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -126,6 +126,8 @@ extern void inittime(); extern void initmath(); extern void initregexp(); extern void initposix(); +extern void initpwd(); +extern void initgrp(); #ifdef USE_AUDIO extern void initaudio(); #endif @@ -156,6 +158,8 @@ struct { {"math", initmath}, {"regexp", initregexp}, {"posix", initposix}, + {"pwd", initpwd}, + {"grp", initgrp}, /* Optional modules */