From 188b257855973b53b68cc814141cf4ed6f709a00 Mon Sep 17 00:00:00 2001 From: antirez Date: Sun, 27 Feb 2005 17:06:16 +0000 Subject: aritymin/aritymax information no longer used for C-coded commands. API changed accordingly. --- jim-posix.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'jim-posix.c') diff --git a/jim-posix.c b/jim-posix.c index 5466101..ed172f0 100644 --- a/jim-posix.c +++ b/jim-posix.c @@ -103,10 +103,10 @@ static int Jim_PosixSethostnameCommand(Jim_Interp *interp, int argc, int Jim_OnLoad(Jim_Interp *interp) { Jim_InitExtension(interp, "1.0"); - Jim_CreateCommand(interp, "os.fork", Jim_PosixForkCommand, 1, 1, NULL); - Jim_CreateCommand(interp, "os.sleep", Jim_PosixSleepCommand, 2, 2, NULL); - Jim_CreateCommand(interp, "os.getids", Jim_PosixGetidsCommand, 1, 2, NULL); - Jim_CreateCommand(interp, "os.gethostname", Jim_PosixGethostnameCommand, 1, 1, NULL); - Jim_CreateCommand(interp, "os.sethostname", Jim_PosixSethostnameCommand, 2, 2, NULL); + Jim_CreateCommand(interp, "os.fork", Jim_PosixForkCommand, NULL); + Jim_CreateCommand(interp, "os.sleep", Jim_PosixSleepCommand, NULL); + Jim_CreateCommand(interp, "os.getids", Jim_PosixGetidsCommand, NULL); + Jim_CreateCommand(interp, "os.gethostname", Jim_PosixGethostnameCommand, NULL); + Jim_CreateCommand(interp, "os.sethostname", Jim_PosixSethostnameCommand, NULL); return JIM_OK; } -- cgit v1.1