macro for pthread_equal

no sense bloating apps with a function call for an equality comparison...
diff --git a/include/pthread.h b/include/pthread.h
index a0af20f..44a7101 100644
--- a/include/pthread.h
+++ b/include/pthread.h
@@ -80,7 +80,9 @@
 __attribute__((const))
 #endif
 pthread_t pthread_self(void);
+
 int pthread_equal(pthread_t, pthread_t);
+#define pthread_equal(x,y) ((x)==(y))
 
 int pthread_setcancelstate(int, int *);
 int pthread_setcanceltype(int, int *);