Changeset e1c870801444cfd8ddfd958eb6a5f34910ecb356
- Timestamp:
- 12/12/07 17:46:40
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1197478000 +0000
- git-parent:
[e03e85ca01adc1639db0f9bf90aadf8d20c2cbeb]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1197478000 +0000
- Message:
Remove some cruft
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| re03e85c |
re1c8708 |
|
| 28 | 28 | #include "libvlc.h" |
|---|
| 29 | 29 | |
|---|
| 30 | | /* Some faulty libcs have a broken struct dirent when _FILE_OFFSET_BITS |
|---|
| 31 | | * is set to 64. Don't try to be cleverer. */ |
|---|
| 32 | | #ifdef _FILE_OFFSET_BITS |
|---|
| 33 | | #undef _FILE_OFFSET_BITS |
|---|
| 34 | | #endif |
|---|
| 35 | | |
|---|
| 36 | 30 | #include <stdlib.h> /* free(), strtol() */ |
|---|
| 37 | 31 | #include <stdio.h> /* sprintf() */ |
|---|
| 38 | 32 | #include <string.h> /* strdup() */ |
|---|
| 39 | 33 | |
|---|
| 40 | | #ifdef HAVE_DIRENT_H |
|---|
| 41 | | # include <dirent.h> |
|---|
| 42 | | #endif |
|---|
| 43 | | |
|---|
| 44 | 34 | #ifdef HAVE_SYS_TYPES_H |
|---|
| 45 | 35 | # include <sys/types.h> |
|---|
| 46 | | #endif |
|---|
| 47 | | #ifdef HAVE_SYS_STAT_H |
|---|
| 48 | | # include <sys/stat.h> |
|---|
| 49 | 36 | #endif |
|---|
| 50 | 37 | #ifdef HAVE_UNISTD_H |
|---|
| … | … | |
| 82 | 69 | |
|---|
| 83 | 70 | #include "modules/modules.h" |
|---|
| 84 | | #include "modules/builtin.h" |
|---|
| 85 | 71 | |
|---|
| 86 | 72 | |
|---|
| re03e85c |
re1c8708 |
|
| 62 | 62 | #endif |
|---|
| 63 | 63 | |
|---|
| 64 | | //#include "config/config.h" |
|---|
| 65 | | |
|---|
| 66 | | //#include "vlc_charset.h" |
|---|
| 67 | | |
|---|
| 68 | 64 | /***************************************************************************** |
|---|
| 69 | 65 | * Local prototypes |
|---|