remove unix style include

This commit is contained in:
Igor Malovitsa 2024-03-04 22:38:46 +02:00
parent 4fa350a094
commit e5486f0dff
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
CC ?= gcc CC = gcc
CFLAGS_EXTRA ?= CFLAGS_EXTRA =
CFLAGS ?= -Wall -Wextra -Wpedantic -std=c17 -O3 CFLAGS = -Wall -Wextra -Wpedantic -std=c17 -O3
.PHONY: clean .PHONY: clean

2
hbas.c
View file

@ -1,7 +1,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <sys/errno.h> #include <errno.h>
void hd(char *data, size_t len) { void hd(char *data, size_t len) {
for (size_t ii = 0; ii < len; ii += 1) { for (size_t ii = 0; ii < len; ii += 1) {