Compare commits

..

2 Commits

Author SHA1 Message Date
1e7545637b Update resistormaid.c 2024-02-25 13:58:45 -08:00
f55645c7a7 Update Makefile 2024-02-25 13:57:48 -08:00
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,5 @@
CC=gcc
CFLAGS=-Wall -O2
CFLAGS=-Wall -Wextra -Wpedantic -O2 -std=c99
LDFLAGS=-lm
ifndef VERBOSE

View File

@ -1,4 +1,5 @@
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>