__attribute -> __attribute__.

This commit is contained in:
ragge 2007-09-16 18:42:02 +00:00
parent cf9d41447f
commit b531488dbc
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rtquery.c,v 1.18 2006/05/10 21:53:15 mrg Exp $ */
/* $NetBSD: rtquery.c,v 1.19 2007/09/16 18:42:02 ragge Exp $ */
/*-
* Copyright (c) 1982, 1986, 1993
@ -64,7 +64,7 @@ __COPYRIGHT("@(#) Copyright (c) 1983, 1988, 1993\n"
"The Regents of the University of California."
" All rights reserved.\n");
#ifdef __NetBSD__
__RCSID("$NetBSD: rtquery.c,v 1.18 2006/05/10 21:53:15 mrg Exp $");
__RCSID("$NetBSD: rtquery.c,v 1.19 2007/09/16 18:42:02 ragge Exp $");
#elif defined(__FreeBSD__)
__RCSID("$FreeBSD$");
#else
@ -128,8 +128,8 @@ static char *default_argv[] = {localhost_str, 0};
static void rip_input(struct sockaddr_in*, int);
static int out(const char *);
static void trace_loop(char *argv[]) __attribute((__noreturn__));
static void query_loop(char *argv[], int) __attribute((__noreturn__));
static void trace_loop(char *argv[]) __attribute__((__noreturn__));
static void query_loop(char *argv[], int) __attribute__((__noreturn__));
static int getnet(char *, struct netinfo *);
static u_int std_mask(u_int);
static int parse_quote(char **, const char *, char *, char *, int);