From 9f9b9c1b0a59892a498e5f6968fb2364b5f6ced3 Mon Sep 17 00:00:00 2001 From: tv Date: Fri, 28 Aug 1998 22:55:50 +0000 Subject: [PATCH] Use __format__, __printf__ for consistency --- include/stdio.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/stdio.h b/include/stdio.h index 2815edb891aa..3f5ac3abd4f7 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -1,4 +1,4 @@ -/* $NetBSD: stdio.h,v 1.27 1998/08/28 21:37:12 perry Exp $ */ +/* $NetBSD: stdio.h,v 1.28 1998/08/28 22:55:50 tv Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -329,13 +329,13 @@ __END_DECLS !defined(_XOPEN_SOURCE) __BEGIN_DECLS int asprintf __P((char **, const char *, ...)) - __attribute__((format (printf, 2, 3))); + __attribute__((__format__(__printf__, 2, 3))); char *fgetln __P((FILE *, size_t *)); int fpurge __P((FILE *)); void setbuffer __P((FILE *, char *, int)); int setlinebuf __P((FILE *)); int vasprintf __P((char **, const char *, _BSD_VA_LIST_)) - __attribute__((format (printf, 2, 0))); + __attribute__((__format__(__printf__, 2, 0))); int vscanf __P((const char *, _BSD_VA_LIST_)) __attribute__((__format__(__scanf__, 1, 0))); int vsscanf __P((const char *, const char *, _BSD_VA_LIST_))