Skip to content
Snippets Groups Projects
Commit 461cddc1 authored by Reuben Thomas's avatar Reuben Thomas
Browse files

[project @ 2000-04-06 10:33:06 by rrt]

K&R is long dead
So why do its prototypes still live?
parent 95f03856
No related merge requests found
/*
* (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
*
* $Id: removeFile.c,v 1.3 1998/12/02 13:27:49 simonm Exp $
* $Id: removeFile.c,v 1.4 2000/04/06 10:33:07 rrt Exp $
*
* removeFile Runtime Support
*/
......@@ -18,8 +18,7 @@
#endif
StgInt
removeFile(path)
StgByteArray path;
removeFile(StgByteArray path)
{
struct stat sb;
......
/*
* (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
*
* $Id: renameFile.c,v 1.7 2000/04/06 10:26:09 rrt Exp $
* $Id: renameFile.c,v 1.8 2000/04/06 10:33:06 rrt Exp $
*
* renameFile Runtime Support
*/
......@@ -23,9 +23,7 @@
StgInt
renameFile(opath, npath)
StgByteArray opath;
StgByteArray npath;
renameFile(StgByteArray opath, StgByteArray npath)
{
struct stat sb;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment