diff options
author | Aiden Gall <aiden@aidengall.xyz> | 2024-02-04 14:43:37 +0000 |
---|---|---|
committer | Aiden Gall <aiden@aidengall.xyz> | 2024-02-04 14:46:37 +0000 |
commit | c44d2805ba480fc7c2faf8ae07f2c1c9febf7e34 (patch) | |
tree | 0171574e51da53dbe2664360949cc78259b2da0b /src/util.h | |
parent | 5ff9d6184771970c14e682ecf55cbd9d27b2fada (diff) |
render with raylib
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -13,7 +13,6 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include <CL/cl_platform.h> #include <stdio.h> void warn(const char *fmt, ...); @@ -21,4 +20,4 @@ void die(const char *fmt, ...); void efwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream); -const char *cl_strerror(cl_int err); +long argtonum(const char *arg, long minval, long maxval); |