__const__ -> const

This is in an __attribute__ so it isn't really necessary, but it gets
it out of the listing of __keyword__s...
This commit is contained in:
perry 2005-12-24 23:04:05 +00:00
parent 00d6acb4b6
commit 971a8b8cc7
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: stdlib.h,v 1.73 2005/09/26 12:51:34 kleink Exp $ */
/* $NetBSD: stdlib.h,v 1.74 2005/12/24 23:04:05 perry Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -273,7 +273,7 @@ int sradixsort(const unsigned char **, int, const unsigned char *,
void setproctitle(const char *, ...)
__attribute__((__format__(__printf__, 1, 2)));
const char *getprogname(void) __attribute__((__const__));
const char *getprogname(void) __attribute__((const));
void setprogname(const char *);
quad_t qabs(quad_t);