Switch to using C instead of C++

This commit is contained in:
Abdelrahman Said 2023-06-02 00:19:10 +01:00
parent 6afd2ad97b
commit b7e2de196e

4
build
View File

@ -1,8 +1,8 @@
#!/usr/bin/bash
CC=clang++
CC=clang
CFLAGS="-g -Wall -Werror -pedantic"
SRC=*.cpp
SRC=*.c
OUT=main
set -x