colourpicker

Simple Colour Picker written in C
git clone anongit@rnpnr.xyz:colourpicker.git
Log | Files | Refs | Feed | Submodules | README | LICENSE

Commit: 1e4b87d9f0a5a9b9c6fd185abcd0473fdd81d1dd
Parent: 194c8c3440b5934b661d76a04e274b76bce9bcc4
Author: Randy Palamar
Date:   Wed, 31 Jul 2024 11:47:59 -0600

only add debug headers in debug build

Diffstat:
Mmain.c | 9+++++----
1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/main.c b/main.c @@ -1,15 +1,16 @@ /* See LICENSE for copyright details */ -#include <dlfcn.h> -#include <fcntl.h> #include <raylib.h> #include <stdio.h> #include <stdlib.h> -#include <sys/stat.h> -#include <unistd.h> #include "util.c" #ifdef _DEBUG +#include <dlfcn.h> +#include <fcntl.h> +#include <sys/stat.h> +#include <unistd.h> + typedef struct timespec Filetime; static const char *libname = "./libcolourpicker.so";