summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2021-08-07 15:24:51 +0200
committerBruno Haible <bruno@clisp.org>2021-08-07 15:24:51 +0200
commit10d4999c5a34b98f8658fc89942d4724636c7f66 (patch)
tree970a66551ca5f6a9e5a393941e2143e8c86c0cfa /lib
parentc67dc34d3f434b59b2574d07512a9894800ee8d1 (diff)
downloadgnulib-10d4999c5a34b98f8658fc89942d4724636c7f66.tar.gz
quotearg: Tweak last commit.
* lib/quotearg.h: Don't include <stddef.h>. Remove stray semicolon.
Diffstat (limited to 'lib')
-rw-r--r--lib/quotearg.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/quotearg.h b/lib/quotearg.h
index 22c09bcea1..f5644b8afb 100644
--- a/lib/quotearg.h
+++ b/lib/quotearg.h
@@ -21,7 +21,6 @@
#ifndef QUOTEARG_H_
# define QUOTEARG_H_ 1
-# include <stddef.h>
# include <stdlib.h>
/* Basic quoting styles. For each style, an example is given on the
@@ -279,6 +278,7 @@ struct quoting_options;
struct quoting_options *clone_quoting_options (struct quoting_options *o)
_GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE
_GL_ATTRIBUTE_RETURNS_NONNULL;
+
/* Get the value of O's quoting style. If O is null, use the default. */
enum quoting_style get_quoting_style (struct quoting_options const *o);
@@ -347,7 +347,6 @@ char *quotearg_alloc_mem (char const *arg, size_t argsize,
size_t *size, struct quoting_options const *o)
_GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE
_GL_ATTRIBUTE_RETURNS_NONNULL;
-;
/* Use storage slot N to return a quoted version of the string ARG.
Use the default quoting options.