我有這個包括文件(memory .h
)錯誤:之前預期 ')' '*' 令牌
#ifndef MEMORY_H
#define MEMORY_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct mmemory {
int* cells;
int* current_cell;
int cells_number;
} memory;
void memory_init(memory* mymemory, int size);
void step_left(memory* mymemory, int steps);
void step_right(memory* mymemory, int steps);
void cell_inc(memory* mymemory, int quantity);
void print_cell(memory* mymemory);
void get_char(memory* mymemory);
#ifdef __cplusplus
}
#endif
#endif /* MEMORY_H */
而這個執行文件(memory.c
)
#include <stdlib.h>
#include "memory.h"
void
memory_init (memory* mymemory, int size)
{
mymemory->cells = (int*) malloc (sizeof (int) * size);
mymemory->cells_number = size;
mymemory->current_cell = (int*) ((mymemory->cells_number/2) * sizeof (int));
}
... //other function definitions follow
當我嘗試編譯memory.c
我得到這個錯誤每個和每個函數的定義
src/memory.c:5: error: expected ')' before '*' token
其中第5行是memory_init()
的函數定義
有人可以告訴我爲什麼我得到這個錯誤嗎?
什麼編譯器/平臺? – abelenky 2010-09-15 17:16:34
OSX Snow Leopard上的gcc版本4.2.1,帶有-ansi開關 – 2010-09-15 17:18:15
也許某些其他標題在包含標題之前已經定義了MEMORY_H? – Dirk 2010-09-15 17:18:44