Avoid defining version twice
This commit is contained in:
parent
215edeefdf
commit
57f0717a2c
2 changed files with 1 additions and 3 deletions
2
Makefile
2
Makefile
|
@ -1,7 +1,7 @@
|
|||
.POSIX:
|
||||
.SUFFIXES:
|
||||
|
||||
VERSION = "1.0"
|
||||
VERSION = \"1.0\"
|
||||
TARGET = 90s
|
||||
MANPAGE = $(TARGET).1
|
||||
PREFIX ?= /usr/local
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
#ifndef S_H_
|
||||
#define S_H_
|
||||
|
||||
#define VERSION "1.0.0"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
void *memalloc(size_t size);
|
||||
|
|
Loading…
Reference in a new issue