changed first arg of sscanf() to const char *

This commit is contained in:
eck
1990-09-26 13:19:19 +00:00
parent 1f408a38c2
commit bc6df29be8
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
#include <string.h>
#include "loc_incl.h"
int sscanf(char *s, const char *format, ...)
int sscanf(const char *s, const char *format, ...)
{
va_list ap;
int retval;