From: Andre Noll Date: Mon, 13 Aug 2007 00:37:27 +0000 (+0200) Subject: fd.h: Kill two dead function prototypes. X-Git-Tag: v0.2.17~22 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=6c2eae7aea002304e3aa5ae400dab01c469fef0a;hp=5836ee8e47df8966d6030ff3548ead168215edcd fd.h: Kill two dead function prototypes. --- diff --git a/Doxyfile b/Doxyfile index 987f9d0e..31c07f4f 100644 --- a/Doxyfile +++ b/Doxyfile @@ -228,7 +228,7 @@ SUBGROUPING = YES # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES -EXTRACT_ALL = YES +EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. diff --git a/fd.h b/fd.h index 48131f2a..9f553343 100644 --- a/fd.h +++ b/fd.h @@ -11,8 +11,5 @@ int para_select(int n, fd_set *readfds, fd_set *writefds, struct timeval *timeout_tv); int mark_fd_nonblock(int fd); void para_fd_set(int fd, fd_set *fds, int *max_fileno); -__must_check int para_fread(void *dest, size_t nbytes, size_t nmemb, - FILE *stream); __must_check int para_fgets(char *line, int size, FILE *f); -int para_fseek(FILE *stream, long offset, int whence); void *para_mmap(size_t length, int prot, int flags, int fd, off_t offset);