diff options
Diffstat (limited to 'src/backend/storage/ipc/spin.c')
-rw-r--r-- | src/backend/storage/ipc/spin.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/storage/ipc/spin.c b/src/backend/storage/ipc/spin.c index c49ebc91948..4d9bd3f71b4 100644 --- a/src/backend/storage/ipc/spin.c +++ b/src/backend/storage/ipc/spin.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/ipc/Attic/spin.c,v 1.19 1999/07/15 22:39:49 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/ipc/Attic/spin.c,v 1.20 1999/07/16 04:59:44 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -26,13 +26,14 @@ */ #include <errno.h> #include "postgres.h" -#include "storage/s_lock.h" -#include "storage/proc.h" #ifndef HAS_TEST_AND_SET #include <sys/sem.h> #endif +#include "storage/proc.h" +#include "storage/s_lock.h" + /* globals used in this file */ IpcSemaphoreId SpinLockId; |