| commit | b1788c8462a9e44b565c448d288b869eb65b75cd | [log] [tgz] |
|---|---|---|
| author | Andrew Talbot <Andrew.Talbot@talbotville.com> | Sat Mar 17 10:52:14 2007 +0000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Sat Mar 17 20:05:05 2007 +0100 |
| tree | be6f4b8d076206543b05e1d50c872e0914ea4133 | |
| parent | a33f71a32d1448ca16466da3640b29ce7bd1863f [diff] [blame] |
server: Replace inline static with static inline.
diff --git a/server/ptrace.c b/server/ptrace.c index 14a29f5..99cb910 100644 --- a/server/ptrace.c +++ b/server/ptrace.c
@@ -86,7 +86,7 @@ #define PT_READ_D 3 #define PT_WRITE_D 4 #define PT_STEP 5 -inline static int ptrace(int req, ...) { errno = EPERM; return -1; /*FAIL*/ } +static inline int ptrace(int req, ...) { errno = EPERM; return -1; /*FAIL*/ } #endif /* HAVE_SYS_PTRACE_H */ /* handle a status returned by wait4 */