forked from aniani/vim
patch 9.0.1471: warnings for function declarations
Problem: Warnings for function declarations. Solution: Add argument types. (Michael Jarvis, closes #12277)
This commit is contained in:
committed by
Bram Moolenaar
parent
1be4b81bfb
commit
be9624eb47
@@ -1,7 +1,7 @@
|
||||
/* os_macosx.m */
|
||||
void process_cfrunloop();
|
||||
void process_cfrunloop(void);
|
||||
bool sound_mch_play(const char_u* event, long sound_id, soundcb_T *callback, bool playfile);
|
||||
void sound_mch_stop(long sound_id);
|
||||
void sound_mch_clear();
|
||||
void sound_mch_free();
|
||||
void sound_mch_clear(void);
|
||||
void sound_mch_free(void);
|
||||
/* vim: set ft=c : */
|
||||
|
||||
Reference in New Issue
Block a user