suckless/slstatus

moved headers to extern (37959ca569a4bf69c6c1bbb16991cfc6d8452970)
Repositories | README | LICENSE

commit 37959ca569a4bf69c6c1bbb16991cfc6d8452970
parent d73118eaa47a9c4ea9ac9860b3d8b6e4c7c388dc
Author: Aaron Marcher <[email protected]>
Date:   Sat, 17 Sep 2016 18:07:03 +0200

moved headers to extern

Diffstat:
Rarg.h -> extern/arg.h0
Rconcat.h -> extern/concat.h0
Rstrlcat.h -> extern/strlcat.h0
Rstrlcpy.h -> extern/strlcpy.h0
Mslstatus.c8++++----
5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arg.h b/extern/arg.h diff --git a/concat.h b/extern/concat.h diff --git a/strlcat.h b/extern/strlcat.h diff --git a/strlcpy.h b/extern/strlcpy.h diff --git a/slstatus.c b/slstatus.c @@ -26,10 +26,10 @@ #undef strlcat #undef strlcpy -#include "arg.h" -#include "strlcat.h" -#include "strlcpy.h" -#include "concat.h" +#include "extern/arg.h" +#include "extern/strlcat.h" +#include "extern/strlcpy.h" +#include "extern/concat.h" struct arg { char *(*func)();