about summary refs log tree commit diff
path: root/stdlib/fmtmsg.h
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/fmtmsg.h')
-rw-r--r--stdlib/fmtmsg.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/fmtmsg.h b/stdlib/fmtmsg.h
index 53e3e53d89..da53eb404e 100644
--- a/stdlib/fmtmsg.h
+++ b/stdlib/fmtmsg.h
@@ -1,5 +1,5 @@
 /* Message display handling.
-   Copyright (C) 1997, 1999, 2000, 2003 Free Software Foundation, Inc.
+   Copyright (C) 1997, 1999, 2000, 2003, 2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -92,13 +92,13 @@ enum
 
 /* Print message with given CLASSIFICATION, LABEL, SEVERITY, TEXT, ACTION
    and TAG to console or standard error.  */
-extern int fmtmsg (long int __classification, __const char *__label,
-		   int __severity, __const char *__text,
-		   __const char *__action, __const char *__tag);
+extern int fmtmsg (long int __classification, const char *__label,
+		   int __severity, const char *__text,
+		   const char *__action, const char *__tag);
 
 #ifdef __USE_SVID
 /* Add or remove severity level.  */
-extern int addseverity (int __severity, __const char *__string) __THROW;
+extern int addseverity (int __severity, const char *__string) __THROW;
 #endif
 
 __END_DECLS