1
0
mirror of https://github.com/cc65/cc65.git synced 2026-01-25 06:17:49 +00:00

Fixed param type qualifiers in several function definitions

git-svn-id: svn://svn.cc65.org/cc65/trunk@278 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-08-13 16:16:49 +00:00
parent c70c5197e1
commit 114acc4d79
13 changed files with 17 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
/*
* printf.c
*
*
* Ullrich von Bassewitz, 11.08.1998
*/
@@ -11,7 +11,7 @@
int printf (char* format, ...)
int printf (const char* format, ...)
{
va_list ap;
va_start (ap, format);