From 36ed57ef8097e71d50748c88e5fa1ea2caad1030 Mon Sep 17 00:00:00 2001 From: uz Date: Sun, 22 Feb 2009 16:08:30 +0000 Subject: [PATCH] Documented rename(), moved remove to stdio.h (where it belongs), fixed the output for a few existing examples (needs /). git-svn-id: svn://svn.cc65.org/cc65/trunk@3947 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- doc/funcref.sgml | 50 ++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 46 insertions(+), 4 deletions(-) diff --git a/doc/funcref.sgml b/doc/funcref.sgml index ad9139524..1c307b0d0 100644 --- a/doc/funcref.sgml +++ b/doc/funcref.sgml @@ -406,7 +406,8 @@ It does not declare any functions. - + + @@ -451,7 +452,6 @@ It does not declare any functions. - @@ -487,7 +487,7 @@ It does not declare any functions. - + @@ -3902,8 +3902,10 @@ be used in presence of a prototype. , #include <stdio.h> #define FILENAME "helloworld" @@ -3913,6 +3915,44 @@ if (remove (FILENAME) == 0) { } else { printf ("There was a problem deleting %s\n", FILENAME); } + + + + + +rename