summaryrefslogtreecommitdiff
path: root/test/ldso/howdy.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/ldso/howdy.c')
-rw-r--r--test/ldso/howdy.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/ldso/howdy.c b/test/ldso/howdy.c
deleted file mode 100644
index e2724068e..000000000
--- a/test/ldso/howdy.c
+++ /dev/null
@@ -1,24 +0,0 @@
-#include <pthread.h>
-#include <stdio.h>
-
-extern int __pthread_return_0 (void);
-
-int howdy(const char *s)
-{
- return printf("howdy: __pthread_return_0 = %p\n"
- "howdy: pthread_cond_signal = %p\n",
- __pthread_return_0, pthread_cond_signal);
-}
-
-void __attribute__((constructor)) howdy_ctor(void)
-{
- printf("I am the libhowdy constructor!\n");
-}
-
-void __attribute__((destructor)) howdy_dtor(void)
-{
- printf("I am the libhowdy destructor!\n");
-}
-
-
-