diff options
author | June McEnroe <june@causal.agency> | 2018-07-30 15:14:49 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-07-30 15:14:49 -0400 |
commit | 7538237e9cc26f788ba0fd65c97019ef250b5004 (patch) | |
tree | 363688af89b8c4df7040dcfd116f34f4a0771cee /gfx/brot.c | |
parent | Add Neckbeard Deathcamp (diff) | |
download | src-7538237e9cc26f788ba0fd65c97019ef250b5004.tar.gz src-7538237e9cc26f788ba0fd65c97019ef250b5004.zip |
Move graphical programs out of bin
I wonder when the last time was something needed -ledit...
Diffstat (limited to '')
-rw-r--r-- | gfx/brot.c (renamed from bin/brot.c) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/brot.c b/gfx/brot.c index cd520cb9..64efde4b 100644 --- a/bin/brot.c +++ b/gfx/brot.c @@ -26,7 +26,7 @@ #include <time.h> #include <unistd.h> -#include "gfx/gfx.h" +#include "gfx.h" #define RGB(r, g, b) ((uint32_t)(r) << 16 | (uint32_t)(g) << 8 | (uint32_t)(b)) #define GRAY(n) RGB(n, n, n) |