From 44f81a562592052e1f0fe669d1a51fd6ff145a9f Mon Sep 17 00:00:00 2001 From: bg- Date: Tue, 30 Jan 2007 18:04:59 +0000 Subject: [PATCH] * s/_DEF_/_/g * Value is not const and of unknown type. --- core/loader/symbols.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/loader/symbols.h b/core/loader/symbols.h index 84df877a3..e1e811e5a 100644 --- a/core/loader/symbols.h +++ b/core/loader/symbols.h @@ -28,18 +28,18 @@ * * This file is part of the Contiki operating system. * - * @(#)$Id: symbols.h,v 1.4 2007/01/24 16:13:49 adamdunkels Exp $ + * @(#)$Id: symbols.h,v 1.5 2007/01/30 18:04:59 bg- Exp $ */ -#ifndef __SYMBOLS_DEF_H__ -#define __SYMBOLS_DEF_H__ +#ifndef __SYMBOLS_H__ +#define __SYMBOLS_H__ struct symbols { const char *name; - const char *value; + void *value; }; extern const int symbols_nelts; -extern const struct symbols symbols[]; +extern const struct symbols symbols[/* symbols_nelts */]; -#endif /* __SYMBOLS_DEF_H__ */ +#endif /* __SYMBOLS_H__ */