Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b4be93 commit df7a435Copy full SHA for df7a435
src/include/port/linux.h
@@ -12,7 +12,10 @@
12
13
#if defined(PPC)
14
typedef unsigned int slock_t;
15
-
+#elif defined(__alpha__)
16
+typedef long int slock_t;
17
+#else
18
+typedef unsigned char slock_t;
19
#endif
20
21
@@ -24,14 +27,6 @@ typedef unsigned int slock_t;
24
27
#undef NEED_I386_TAS_ASM
25
28
26
29
30
#if defined(__alpha__)
31
32
-#if defined(__alpha__)
-typedef long int slock_t;
33
34
-#else
35
-typedef unsigned char slock_t;
36
37
-#endif
0 commit comments