fpending, obstack, strerror-override: use pure+const function attrs
authorJim Meyering <meyering@fb.com>
Mon, 30 Sep 2013 17:19:38 +0000 (10:19 -0700)
committerJim Meyering <meyering@fb.com>
Sat, 19 Oct 2013 16:19:37 +0000 (09:19 -0700)
* lib/fpending.h (__fpending): Declare with the "pure" attribute.
* lib/obstack.c (_obstack_allocated_p): Likewise.
* lib/obstack.h (_obstack_memory_used): Likewise.
(_obstack_memory_used): Likewise.
* lib/strerror-override.h (strerror_override): Declare with
the "const" attribute.

ChangeLog
lib/fpending.h
lib/obstack.c
lib/obstack.h
lib/strerror-override.h

index 902b129..61a2cb3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2013-09-30  Jim Meyering  <meyering@fb.com>
+
+       fpending, obstack, strerror-override: use pure+const function attrs
+       * lib/fpending.h (__fpending): Declare with the "pure" attribute.
+       * lib/obstack.c (_obstack_allocated_p): Likewise.
+       * lib/obstack.h (_obstack_memory_used): Likewise.
+       (_obstack_memory_used): Likewise.
+       * lib/strerror-override.h (strerror_override): Declare with
+       the "const" attribute.
+
 2013-10-18  Eric Blake  <eblake@redhat.com>
 
        extern-inline: make safe for -Wundef usage
index 4eca3f1..30d67fc 100644 (file)
@@ -25,5 +25,5 @@
 #endif
 
 #ifndef __fpending
-size_t __fpending (FILE *);
+size_t __fpending (FILE *) _GL_ATTRIBUTE_PURE;
 #endif
index d915449..f830fdc 100644 (file)
@@ -313,7 +313,7 @@ libc_hidden_def (_obstack_newchunk)
 
 /* Suppress -Wmissing-prototypes warning.  We don't want to declare this in
    obstack.h because it is just for debugging.  */
-int _obstack_allocated_p (struct obstack *h, void *obj);
+int _obstack_allocated_p (struct obstack *h, void *obj) _GL_ATTRIBUTE_PURE;
 
 int
 _obstack_allocated_p (struct obstack *h, void *obj)
index 7cf98ed..da45427 100644 (file)
@@ -183,7 +183,7 @@ extern int _obstack_begin (struct obstack *, int, int,
 extern int _obstack_begin_1 (struct obstack *, int, int,
                              void *(*) (void *, long),
                              void (*) (void *, void *), void *);
-extern int _obstack_memory_used (struct obstack *);
+extern int _obstack_memory_used (struct obstack *) _GL_ATTRIBUTE_PURE;
 
 /* The default name of the function for freeing a chunk is 'obstack_free',
    but gnulib users can override this by defining '__obstack_free'.  */
index 3b8f24b..0d086b8 100644 (file)
@@ -48,7 +48,7 @@
      || GNULIB_defined_EOWNERDEAD \
      || GNULIB_defined_ENOTRECOVERABLE \
      || GNULIB_defined_EILSEQ
-extern const char *strerror_override (int errnum);
+extern const char *strerror_override (int errnum) _GL_ATTRIBUTE_CONST;
 # else
 #  define strerror_override(ignored) NULL
 # endif