1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

hermit/stddef.h: remove excess ';'

This commit is contained in:
daniel-k 2016-07-01 18:54:09 +02:00
parent 74c3d4f0ba
commit b3f156b7a5

View file

@ -47,9 +47,9 @@ extern "C" {
/// represents a task identifier
typedef unsigned int tid_t;
#define DECLARE_PER_CORE(type, name) extern type name __attribute__ ((section (".percore")));
#define DEFINE_PER_CORE(type, name, def_value) type name __attribute__ ((section (".percore"))) = def_value;
#define DEFINE_PER_CORE_STATIC(type, name, def_value) static type name __attribute__ ((section (".percore"))) = def_value;
#define DECLARE_PER_CORE(type, name) extern type name __attribute__ ((section (".percore")))
#define DEFINE_PER_CORE(type, name, def_value) type name __attribute__ ((section (".percore"))) = def_value
#define DEFINE_PER_CORE_STATIC(type, name, def_value) static type name __attribute__ ((section (".percore"))) = def_value
/* needed to find the task, which is currently running on this core */
struct task;