Skip to content

Commit 7bdf1c4

Browse files
author
falkTX
committed
order functions by name, cleanup
1 parent 0a71921 commit 7bdf1c4

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

functions

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
int|access|const char *pathname, int mode|pathname, mode
2-
int|select|int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout|nfds, readfds, writefds, exceptfds, timeout
3-
unsigned int|sleep|unsigned int seconds|seconds
4-
void *|malloc|size_t size|size
5-
void *|realloc|void *ptr, size_t size|ptr, size
1+
int|access|const char* pathname, int mode|pathname, mode
62
void|free|void* ptr|ptr
7-
int|pthread_mutex_lock|pthread_mutex_t *mutex|mutex
8-
int|pthread_join|pthread_t thread, void **value_ptr|thread, value_ptr
3+
void*|malloc|size_t size|size
4+
int|poll|struct pollfd* fds, nfds_t nfds, int timeout|fds, nfds, timeout
5+
int|pthread_join|pthread_t thread, void** value_ptr|thread, value_ptr
6+
int|pthread_mutex_lock|pthread_mutex_t* mutex|mutex
7+
void*|realloc|void* ptr, size_t size|ptr, size
8+
int|select|int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, struct timeval* timeout|nfds, readfds, writefds, exceptfds, timeout
9+
unsigned int|sleep|unsigned int seconds|seconds
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
912
pid_t|wait|int* status|status
10-
int|poll|struct pollfd *fds, nfds_t nfds, int timeout|fds, nfds, timeout
11-
int|vprintf|const char *format, va_list ap|format, ap
12-
int|vfprintf|FILE *stream, const char *format, va_list ap|stream, format, ap

0 commit comments

Comments
 (0)