diff options
author | midipix <writeonce@midipix.org> | 2018-06-26 09:36:02 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-06-27 07:30:00 -0400 |
commit | 23e9d1b0e7984bd2505acb1dd985cd515a6e2ea0 (patch) | |
tree | b4049d9a2766ccee9992f7f39549e0bfc415d750 | |
parent | a3ea44248b301b5880436db67d175787c39635d3 (diff) | |
download | slibtool-23e9d1b0e7984bd2505acb1dd985cd515a6e2ea0.tar.bz2 slibtool-23e9d1b0e7984bd2505acb1dd985cd515a6e2ea0.tar.xz |
argv.h: move definition of struct argv_meta_impl to the implementation block.
-rw-r--r-- | src/internal/argv/argv.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/internal/argv/argv.h b/src/internal/argv/argv.h index 1214892..0418803 100644 --- a/src/internal/argv/argv.h +++ b/src/internal/argv/argv.h @@ -119,12 +119,6 @@ struct argv_meta { struct argv_entry * entries; }; -struct argv_meta_impl { - char ** argv; - char * strbuf; - struct argv_meta meta; -}; - struct argv_ctx { int flags; int mode; @@ -139,6 +133,12 @@ struct argv_ctx { #ifdef ARGV_DRIVER +struct argv_meta_impl { + char ** argv; + char * strbuf; + struct argv_meta meta; +}; + static int argv_optv_init( const struct argv_option[], const struct argv_option **); |