From: Jim Meyering Date: Thu, 1 Nov 2001 22:16:43 +0000 (+0000) Subject: remove const X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=263dc6ae73784b09af3031369fee1457f3ad3741;p=pspp remove const --- diff --git a/lib/dirfd.c b/lib/dirfd.c index e234063534..77ada78de5 100644 --- a/lib/dirfd.c +++ b/lib/dirfd.c @@ -24,7 +24,7 @@ #include "dirfd.h" int -dirfd (DIR const *dir_p) +dirfd (DIR *dir_p) { return DIR_TO_FD; }