[In the words of the author: stat.c - provide lstat function so that it links cleanly and doesn't accvio when run. -kingdon] Date: Mon, 03 May 1999 13:45:14 -0400 From: "Colin R. Blake" Organization: OpenVMS To: bug-cvs@gnu.org Subject: [Fwd: diff -u output for stat.c] --- stat.c;-0 Sun Nov 30 04:38:22 1997 +++ stat.c.0 Mon Apr 26 09:05:15 1999 @@ -31,3 +31,10 @@ return rs; } + +int lstat (path, buffer) +const char *path; +struct stat *buffer; +{ + return stat(path,buffer); +}