Skip to content

Commit 00fc295

Browse files
committed
Make S/390 TAS spell __inline__ the same way as the other eight GCC
inline routines do.
1 parent 7798b50 commit 00fc295

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/storage/s_lock.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
6464
* Portions Copyright (c) 1994, Regents of the University of California
6565
*
66-
* $Id: s_lock.h,v 1.96 2001/12/11 02:58:49 tgl Exp $
66+
* $Id: s_lock.h,v 1.97 2002/01/29 15:44:42 tgl Exp $
6767
*
6868
*-------------------------------------------------------------------------
6969
*/
@@ -156,7 +156,7 @@ tas(volatile slock_t *lock)
156156
*/
157157
#define TAS(lock) tas(lock)
158158

159-
static inline int
159+
static __inline__ int
160160
tas(volatile slock_t *lock)
161161
{
162162
int _res;

0 commit comments

Comments
 (0)