Avoid defining version twice

This commit is contained in:
Night Kaly 2025-02-08 20:26:04 +00:00
parent 215edeefdf
commit 57f0717a2c
Signed by: night0721
SSH key fingerprint: SHA256:B/hgVwUoBpx5vdNsXl9w8XwZljA9766uk6T4ubZp5HM
2 changed files with 1 additions and 3 deletions

View file

@ -1,7 +1,7 @@
.POSIX:
.SUFFIXES:
VERSION = "1.0"
VERSION = \"1.0\"
TARGET = 90s
MANPAGE = $(TARGET).1
PREFIX ?= /usr/local

View file

@ -1,8 +1,6 @@
#ifndef S_H_
#define S_H_
#define VERSION "1.0.0"
#include <stdio.h>
void *memalloc(size_t size);