memmem: slight optimization
[pspp] / lib / pthread.in.h
index ae91ed2e24d6dea9786b98cafadc0cec4d80df40..89fbc03726203c5c0bc58092c4d67a7160601958 100644 (file)
@@ -1,6 +1,6 @@
 /* Implement a trivial subset of the pthreads library.
 
-   Copyright (C) 2009 Free Software Foundation, Inc.
+   Copyright (C) 2009, 2010 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -29,8 +29,8 @@ typedef int pthread_attr_t;
 
 static int
 pthread_create (pthread_t *restrict thread,
-               const pthread_attr_t *restrict attr,
-               void *(*start_routine)(void*), void *restrict arg)
+                const pthread_attr_t *restrict attr,
+                void *(*start_routine)(void*), void *restrict arg)
 {
   errno = EAGAIN;
   return -1;