diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-19 18:07:36 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-19 18:07:36 +0000 |
commit | b653d1e26367c3562f45c25360e0f9790a80048e (patch) | |
tree | ba7df86707ac109701a400e8509ad332a5cbdedc /src | |
parent | 50644a22020d1af4e4efbdcd36b2460f86835a88 (diff) | |
download | postgresql-b653d1e26367c3562f45c25360e0f9790a80048e.tar.gz postgresql-b653d1e26367c3562f45c25360e0f9790a80048e.zip |
Fix for linux/sparc.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/port/linux.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/port/linux.h b/src/include/port/linux.h index 6a09cb1f4af..3fe4d621b0f 100644 --- a/src/include/port/linux.h +++ b/src/include/port/linux.h @@ -11,6 +11,9 @@ #if defined(__i386__) typedef unsigned char slock_t; +#elif defined(__sparc__) +typedef unsigned char slock_t; + #elif defined(__powerpc__) typedef unsigned int slock_t; |