add 'realloc'. 'calloc' causes problems :/
[jack_interposer.git] / functions
blobf3e41af58b9663ce08826fe0763b870ae1f21f1f
1 int|select|int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout|nfds, readfds, writefds, exceptfds, timeout
2 unsigned int|sleep|unsigned int seconds|seconds
3 void *|malloc|size_t size|size
4 void *|realloc|void *ptr, size_t size|ptr, size
5 void|free|void* ptr|ptr
6 int|pthread_mutex_lock|pthread_mutex_t *mutex|mutex
7 int|pthread_join|pthread_t thread, void **value_ptr|thread, value_ptr
8 pid_t|wait|int* status|status
9 int|poll|struct pollfd *fds, nfds_t nfds, int timeout|fds, nfds, timeout
10 int|vprintf|const char *format, va_list ap|format, ap
11 int|vfprintf|FILE *stream, const char *format, va_list ap|stream, format, ap