diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2002-09-17 20:42:06 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2002-09-17 20:42:06 +0000 |
commit | 7bdbf371e19507cfa039e3aa14c2d746a9db90a5 (patch) | |
tree | ecc7cce378d3219330a5d642a0409b34c64c3f53 /pfinet/glue-include | |
parent | a4e720458600535b4ec46bd10617ac9c9d837c94 (diff) |
2002-09-17 Marcus Brinkmann <marcus@gnu.org>
* Makeconf (CPPFLAGS): Move -std=gnu99 option to ...
(CFLAGS): ... here.
pfinet/
2002-09-17 Marcus Brinkmann <marcus@gnu.org>
* Makefile: Revert last change.
* glue-include/asm/spinlock.h (SPIN_LOCK_UNLOCKED): Do not use a
compound literal, which is not constant.
Diffstat (limited to 'pfinet/glue-include')
-rw-r--r-- | pfinet/glue-include/asm/spinlock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pfinet/glue-include/asm/spinlock.h b/pfinet/glue-include/asm/spinlock.h index 937c5d05..1666b0e2 100644 --- a/pfinet/glue-include/asm/spinlock.h +++ b/pfinet/glue-include/asm/spinlock.h @@ -4,7 +4,7 @@ #include <cthreads.h> typedef struct { } spinlock_t; -#define SPIN_LOCK_UNLOCKED (spinlock_t) { } +#define SPIN_LOCK_UNLOCKED { } #undef spin_lock_init #undef spin_lock |