Changeset 6f9eedc7b73936de86ab406f9cfd3e3946d68d96
- Timestamp:
- 01/06/08 09:48:49
(6 months ago)
- Author:
- Rémi Denis-Courmont <rdenis@simphalempin.com>
- git-committer:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1212306529 +0300
- git-parent:
[ef20d249e83dfd3321754c1e7a964e448001898e]
- git-author:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1212306529 +0300
- Message:
Fix prototypes
/!\ In pure C, () means (...), not (void)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r40caaae |
r6f9eedc |
|
| 188 | 188 | } |
|---|
| 189 | 189 | |
|---|
| 190 | | const char * libvlc_get_version() |
|---|
| | 190 | const char * libvlc_get_version(void) |
|---|
| 191 | 191 | { |
|---|
| 192 | 192 | return VLC_Version(); |
|---|
| 193 | 193 | } |
|---|
| 194 | 194 | |
|---|
| 195 | | const char * libvlc_get_compiler() |
|---|
| | 195 | const char * libvlc_get_compiler(void) |
|---|
| 196 | 196 | { |
|---|
| 197 | 197 | return VLC_Compiler(); |
|---|
| 198 | 198 | } |
|---|
| 199 | 199 | |
|---|
| 200 | | const char * libvlc_get_changeset() |
|---|
| | 200 | const char * libvlc_get_changeset(void) |
|---|
| 201 | 201 | { |
|---|
| 202 | 202 | return VLC_Changeset(); |
|---|