MSVC doesn't like K&R function declarations: use ansi instead.

This commit is contained in:
Jon Griffiths 2003-07-19 03:03:05 +00:00 committed by Alexandre Julliard
parent 564f5828b0
commit d7eea36441
1 changed files with 3 additions and 3 deletions

View File

@ -64,9 +64,9 @@ reading and writing.
*/ */
int int
mkstemps (template, suffix_len) mkstemps (
char *template; char *template,
int suffix_len; int suffix_len)
{ {
static const char letters[] static const char letters[]
= "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";