From d7eea364416021ad4ae25017a91d26690db81002 Mon Sep 17 00:00:00 2001 From: Jon Griffiths Date: Sat, 19 Jul 2003 03:03:05 +0000 Subject: [PATCH] MSVC doesn't like K&R function declarations: use ansi instead. --- libs/port/mkstemps.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/port/mkstemps.c b/libs/port/mkstemps.c index f6674334744..7dd1672c863 100644 --- a/libs/port/mkstemps.c +++ b/libs/port/mkstemps.c @@ -64,9 +64,9 @@ reading and writing. */ int -mkstemps (template, suffix_len) - char *template; - int suffix_len; +mkstemps ( + char *template, + int suffix_len) { static const char letters[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";