diff options
author | June McEnroe <june@causal.agency> | 2019-11-06 01:03:04 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-11-06 01:03:04 -0500 |
commit | ee15889c433bb692e48f8e6e68016d3d0995c04e (patch) | |
tree | e2db39f02735c1d1c7ae6cc359e1554619f333b6 /config.c | |
parent | Clean up bounce.c (diff) | |
download | pounce-ee15889c433bb692e48f8e6e68016d3d0995c04e.tar.gz pounce-ee15889c433bb692e48f8e6e68016d3d0995c04e.zip |
Use explicit_bzero from LibreSSL
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.c b/config.c index 1d608d6..e6a5a7d 100644 --- a/config.c +++ b/config.c @@ -14,14 +14,14 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "bounce.h" - #include <err.h> #include <getopt.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#include "bounce.h" + #define WS "\t " static const char *path; |