summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_condattr.c
blob: c537890ba311866008df9993ac0cba73e90529e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <pthread.h>

int pthread_condattr_init(pthread_condattr_t *attr)
{
  return 0;
}

int pthread_condattr_destroy(pthread_condattr_t *attr)
__attribute__((alias("pthread_condattr_init")));

int pthread_condattr_getpshared(const pthread_condattr_t *attr, int *pshared)
__attribute__((alias("pthread_condattr_init")));

int pthread_condattr_setpshared(pthread_condattr_t *attr, int pshared)
__attribute__((alias("pthread_condattr_init")));