Skip to content

Commit

Permalink
order functions by name, cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
falkTX committed May 12, 2016
1 parent 0a71921 commit 7bdf1c4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions functions
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
int|access|const char *pathname, int mode|pathname, mode
int|select|int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout|nfds, readfds, writefds, exceptfds, timeout
unsigned int|sleep|unsigned int seconds|seconds
void *|malloc|size_t size|size
void *|realloc|void *ptr, size_t size|ptr, size
int|access|const char* pathname, int mode|pathname, mode
void|free|void* ptr|ptr
int|pthread_mutex_lock|pthread_mutex_t *mutex|mutex
int|pthread_join|pthread_t thread, void **value_ptr|thread, value_ptr
void*|malloc|size_t size|size
int|poll|struct pollfd* fds, nfds_t nfds, int timeout|fds, nfds, timeout
int|pthread_join|pthread_t thread, void** value_ptr|thread, value_ptr
int|pthread_mutex_lock|pthread_mutex_t* mutex|mutex
void*|realloc|void* ptr, size_t size|ptr, size
int|select|int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, struct timeval* timeout|nfds, readfds, writefds, exceptfds, timeout
unsigned int|sleep|unsigned int seconds|seconds
int|vprintf|const char* format, va_list ap|format, ap
int|vfprintf|FILE* stream, const char* format, va_list ap|stream, format, ap
pid_t|wait|int* status|status
int|poll|struct pollfd *fds, nfds_t nfds, int timeout|fds, nfds, timeout
int|vprintf|const char *format, va_list ap|format, ap
int|vfprintf|FILE *stream, const char *format, va_list ap|stream, format, ap

0 comments on commit 7bdf1c4

Please sign in to comment.