Changeset 83f23b6686543887f908d184387782bf018c35d5
- Timestamp:
- 12/09/06 20:49:41
(2 years ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1158086981 +0000
- git-parent:
[ecddc275c8a364888dc9ea30917c764875d02fc6]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1158086981 +0000
- Message:
Ahem: (v)asprintf requires stdio.h; strndup requires string.h
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rbaacaea |
r83f23b6 |
|
| 25 | 25 | * Preamble |
|---|
| 26 | 26 | *****************************************************************************/ |
|---|
| | 27 | |
|---|
| | 28 | #include <vlc/vlc.h> |
|---|
| | 29 | |
|---|
| | 30 | #include <stdio.h> |
|---|
| 27 | 31 | #include <stdlib.h> /* calloc(), malloc(), free() */ |
|---|
| 28 | 32 | #include <string.h> |
|---|
| 29 | 33 | |
|---|
| 30 | | #include <vlc/vlc.h> |
|---|
| 31 | 34 | #include <vlc/input.h> /* for input_thread_t and i_pts_delay */ |
|---|
| 32 | 35 | |
|---|
| r470b47f |
r83f23b6 |
|
| 22 | 22 | *****************************************************************************/ |
|---|
| 23 | 23 | |
|---|
| | 24 | #include <vlc/vlc.h> |
|---|
| | 25 | |
|---|
| | 26 | #include <stdio.h> |
|---|
| 24 | 27 | #include <stdlib.h> |
|---|
| 25 | | #include <vlc/vlc.h> |
|---|
| 26 | 28 | #include <vlc/input.h> |
|---|
| 27 | 29 | |
|---|
| r8b05507 |
r83f23b6 |
|
| 26 | 26 | * Preamble |
|---|
| 27 | 27 | *****************************************************************************/ |
|---|
| | 28 | #include <vlc/vlc.h> |
|---|
| | 29 | |
|---|
| | 30 | #include <stdio.h> |
|---|
| 28 | 31 | #include <stdlib.h> |
|---|
| 29 | 32 | |
|---|
| 30 | | #include <vlc/vlc.h> |
|---|
| 31 | 33 | #include <vlc/input.h> |
|---|
| 32 | 34 | #include <vlc/decoder.h> |
|---|
| r2cb472d |
r83f23b6 |
|
| 25 | 25 | * Preamble |
|---|
| 26 | 26 | *****************************************************************************/ |
|---|
| | 27 | #include <vlc/vlc.h> |
|---|
| | 28 | #include <stdio.h> |
|---|
| 27 | 29 | #include <stdlib.h> |
|---|
| 28 | | #include <vlc/vlc.h> |
|---|
| 29 | 30 | #include <vlc/input.h> |
|---|
| 30 | 31 | |
|---|
| r8bc1b5a |
r83f23b6 |
|
| 31 | 31 | * Preamble |
|---|
| 32 | 32 | *****************************************************************************/ |
|---|
| | 33 | |
|---|
| | 34 | #include <vlc/vlc.h> |
|---|
| | 35 | |
|---|
| 33 | 36 | #include <stdlib.h> /* free(), strtol() */ |
|---|
| 34 | 37 | #include <stdio.h> /* FILE */ |
|---|
| 35 | 38 | #include <string.h> /* strerror() */ |
|---|
| 36 | 39 | |
|---|
| 37 | | #include <vlc/vlc.h> |
|---|
| 38 | 40 | #include <vlc/input.h> |
|---|
| 39 | 41 | #include <assert.h> |
|---|
| r9281131 |
r83f23b6 |
|
| 28 | 28 | * Preamble |
|---|
| 29 | 29 | *****************************************************************************/ |
|---|
| | 30 | |
|---|
| | 31 | #include <vlc/vlc.h> |
|---|
| | 32 | |
|---|
| 30 | 33 | #include <stdio.h> /* required */ |
|---|
| 31 | 34 | #include <stdarg.h> /* va_list for BSD */ |
|---|
| … | … | |
| 33 | 36 | #include <string.h> /* strerror() */ |
|---|
| 34 | 37 | |
|---|
| 35 | | #include <vlc/vlc.h> |
|---|
| 36 | 38 | |
|---|
| 37 | 39 | #ifdef HAVE_FCNTL_H |
|---|
| rc1737a9 |
r83f23b6 |
|
| 25 | 25 | *****************************************************************************/ |
|---|
| 26 | 26 | |
|---|
| | 27 | #include <vlc/vlc.h> |
|---|
| | 28 | |
|---|
| 27 | 29 | /* Some faulty libcs have a broken struct dirent when _FILE_OFFSET_BITS |
|---|
| 28 | 30 | * is set to 64. Don't try to be cleverer. */ |
|---|
| … | … | |
| 35 | 37 | #include <string.h> /* strdup() */ |
|---|
| 36 | 38 | |
|---|
| 37 | | #include <vlc/vlc.h> |
|---|
| 38 | 39 | #include <vlc/input.h> |
|---|
| 39 | 40 | |
|---|
| rdf0cb34 |
r83f23b6 |
|
| 27 | 27 | * Preamble |
|---|
| 28 | 28 | *****************************************************************************/ |
|---|
| | 29 | |
|---|
| | 30 | #include <vlc/vlc.h> |
|---|
| | 31 | |
|---|
| 29 | 32 | #include <stdio.h> /* sprintf() */ |
|---|
| 30 | 33 | #include <time.h> /* clock_gettime(), clock_nanosleep() */ |
|---|
| 31 | 34 | #include <stdlib.h> /* lldiv() */ |
|---|
| 32 | 35 | |
|---|
| 33 | | #include <vlc/vlc.h> |
|---|
| 34 | 36 | |
|---|
| 35 | 37 | #if defined( PTH_INIT_IN_PTH_H ) /* GNU Pth */ |
|---|
| r093de85 |
r83f23b6 |
|
| 35 | 35 | * Preamble |
|---|
| 36 | 36 | *****************************************************************************/ |
|---|
| | 37 | |
|---|
| | 38 | #include <vlc/vlc.h> |
|---|
| | 39 | |
|---|
| | 40 | #include <stdio.h> |
|---|
| 37 | 41 | #include <stdlib.h> /* malloc(), free() */ |
|---|
| 38 | 42 | #include <ctype.h> /* tolower() */ |
|---|
| 39 | 43 | |
|---|
| 40 | | #include <vlc/vlc.h> |
|---|
| 41 | 44 | |
|---|
| 42 | 45 | #include "vlc_update.h" |
|---|
| r2d824ac |
r83f23b6 |
|
| 27 | 27 | * Preamble |
|---|
| 28 | 28 | *****************************************************************************/ |
|---|
| | 29 | #include <vlc/vlc.h> |
|---|
| | 30 | |
|---|
| | 31 | #include <stdio.h> |
|---|
| 29 | 32 | #include <stdlib.h> /* malloc(), free() */ |
|---|
| 30 | 33 | #include <ctype.h> /* tolower() */ |
|---|
| 31 | | |
|---|
| 32 | | #include <vlc/vlc.h> |
|---|
| 33 | 34 | |
|---|
| 34 | 35 | #ifdef ENABLE_VLM |
|---|
| r68b76a9 |
r83f23b6 |
|
| 23 | 23 | *****************************************************************************/ |
|---|
| 24 | 24 | |
|---|
| | 25 | #include <vlc/vlc.h> |
|---|
| | 26 | |
|---|
| | 27 | #include <stdio.h> |
|---|
| 25 | 28 | #include <stdlib.h> |
|---|
| 26 | | #include <vlc/vlc.h> |
|---|
| 27 | 29 | |
|---|
| 28 | 30 | #ifdef ENABLE_HTTPD |
|---|
| r56649e7 |
r83f23b6 |
|
| 27 | 27 | * Preamble |
|---|
| 28 | 28 | *****************************************************************************/ |
|---|
| | 29 | |
|---|
| | 30 | #include <vlc/vlc.h> |
|---|
| | 31 | |
|---|
| 29 | 32 | #include <stdlib.h> |
|---|
| 30 | | #include <vlc/vlc.h> |
|---|
| | 33 | #include <stdio.h> |
|---|
| 31 | 34 | |
|---|
| 32 | 35 | #include <errno.h> |
|---|
| r92cb05e |
r83f23b6 |
|
| 26 | 26 | * Preamble |
|---|
| 27 | 27 | *****************************************************************************/ |
|---|
| | 28 | |
|---|
| | 29 | #include <vlc/vlc.h> |
|---|
| | 30 | |
|---|
| 28 | 31 | #include <stdlib.h> /* free() */ |
|---|
| 29 | 32 | #include <stdio.h> /* sprintf() */ |
|---|
| … | … | |
| 31 | 34 | #include <ctype.h> /* tolower(), isxdigit() */ |
|---|
| 32 | 35 | |
|---|
| 33 | | #include <vlc/vlc.h> |
|---|
| 34 | 36 | #include <vlc/sout.h> |
|---|
| 35 | 37 | |
|---|
| refca32a |
r83f23b6 |
|
| 27 | 27 | * Preamble |
|---|
| 28 | 28 | *****************************************************************************/ |
|---|
| | 29 | |
|---|
| | 30 | #include <vlc/vlc.h> |
|---|
| | 31 | |
|---|
| 29 | 32 | #include <stdlib.h> /* free() */ |
|---|
| 30 | 33 | #include <stdio.h> /* sprintf() */ |
|---|
| 31 | 34 | #include <string.h> /* strerror() */ |
|---|
| 32 | 35 | |
|---|
| 33 | | #include <vlc/vlc.h> |
|---|
| 34 | 36 | #include <vlc/sout.h> |
|---|
| 35 | 37 | #include <vlc/input.h> |
|---|
| r1aa4230 |
r83f23b6 |
|
| 30 | 30 | * Preamble |
|---|
| 31 | 31 | *****************************************************************************/ |
|---|
| | 32 | #include <vlc/vlc.h> |
|---|
| | 33 | |
|---|
| 32 | 34 | #include <stdlib.h> /* free() */ |
|---|
| 33 | | |
|---|
| 34 | | #include <vlc/vlc.h> |
|---|
| | 35 | #include <string.h> |
|---|
| | 36 | |
|---|
| 35 | 37 | |
|---|
| 36 | 38 | #ifdef HAVE_SYS_TIMES_H |
|---|
| r72d2a5b |
r83f23b6 |
|
| 25 | 25 | * Preamble |
|---|
| 26 | 26 | *****************************************************************************/ |
|---|
| | 27 | |
|---|
| | 28 | #include <vlc/vlc.h> |
|---|
| | 29 | |
|---|
| | 30 | #include <stdio.h> |
|---|
| 27 | 31 | #include <stdlib.h> /* free() */ |
|---|
| 28 | 32 | #include <sys/types.h> /* opendir() */ |
|---|
| 29 | 33 | #include <dirent.h> /* opendir() */ |
|---|
| 30 | 34 | |
|---|
| 31 | | #include <vlc/vlc.h> |
|---|
| 32 | 35 | #include <vlc/intf.h> |
|---|
| 33 | 36 | #include <vlc_block.h> |
|---|