1
0
Fork 0

Drop main

gcc_bug
root 2015-01-10 14:39:23 +00:00
parent 93cd5d5d60
commit 2e9e06fc07
3 changed files with 2 additions and 4 deletions

View File

@ -34,7 +34,7 @@ BINDIR = $(PREFIX)/bin
PGOBENCH = ./$(EXE) bench 16 1 1 default time
### Object files
OBJS = main.o bitboard.o
OBJS = bitboard.o
### ==========================================================================
### Section 2. High-level Configuration

View File

@ -2,7 +2,7 @@ int A[8];
int B[8];
int C;
void init() {
int main() {
for (int f = 0; f <= 7; ++f)
A[f] = f;

View File

@ -1,2 +0,0 @@
extern void init();
int main() { init(); }