This function declaration is not a prototype.
Is there a reason I'm getting so many of these warnings in xcode? double clicking them points me to the cycling header files
In file included from /Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/thebigtablatunproject~.c:8:
In file included from /Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/max-includes/ext.h:43:
/Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/max-includes/ext_proto.h:494:14: warning: this function declaration is not a prototype [-Wstrict-prototypes]
void xsetpost();
^
void
/Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/max-includes/ext_proto.h:1144:20: warning: this function declaration is not a prototype [-Wstrict-prototypes]
void *scheduler_get();
^
void
In file included from /Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/thebigtablatunproject~.c:8:
In file included from /Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/max-includes/ext.h:56:
/Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/max-includes/jpatcher_api.h:1948:42: warning: this function declaration is not a prototype [-Wstrict-prototypes]
t_modifiers jkeyboard_getcurrentmodifiers();
^
void
/Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/max-includes/jpatcher_api.h:1953:51: warning: this function declaration is not a prototype [-Wstrict-prototypes]
t_modifiers jkeyboard_getcurrentmodifiers_realtime();
^
void
/Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/max-includes/jpatcher_api.h:2048:23: warning: this function declaration is not a prototype [-Wstrict-prototypes]
void *jmouse_getobject();
^
void
/Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/max-includes/jpatcher_api.h:2106:29: warning: this function declaration is not a prototype [-Wstrict-prototypes]
long jmonitor_getnumdisplays();
^
void
/Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/max-includes/jpatcher_api.h:2152:33: warning: this function declaration is not a prototype [-Wstrict-prototypes]
long jpatcher_inc_maxsendcontext();
^
void
/Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/max-includes/jpatcher_api.h:2159:40: warning: this function declaration is not a prototype [-Wstrict-prototypes]
t_atom_long jpatcher_dictionary_version();
^
void
/Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/max-includes/jpatcher_api.h:2160:40: warning: this function declaration is not a prototype [-Wstrict-prototypes]
t_dictionary *jpatcher_fallback_version();
^
void
/Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/max-includes/jpatcher_api.h:2168:27: warning: this function declaration is not a prototype [-Wstrict-prototypes]
const char *systemfontname();
^
void
/Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/max-includes/jpatcher_api.h:2174:32: warning: this function declaration is not a prototype [-Wstrict-prototypes]
const char *systemfontname_bold();
^
void
/Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/max-includes/jpatcher_api.h:2180:33: warning: this function declaration is not a prototype [-Wstrict-prototypes]
const char *systemfontname_light();
^
void
/Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/max-includes/jpatcher_api.h:2186:24: warning: this function declaration is not a prototype [-Wstrict-prototypes]
t_symbol *systemfontsym();
^
void
In file included from /Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/thebigtablatunproject~.c:10:
/Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/../../c74support/msp-includes/z_dsp.h:328:21: warning: this function declaration is not a prototype [-Wstrict-prototypes]
void *dsp_getpatcher();
^
void
In file included from /Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/thebigtablatunproject~.c:13:
In file included from /Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/CommonTablaTunLib/ParamShell.h:13:
/Users/matthewaidekman/Documents/Music Documents/Max docs/CDEV/max-sdk-master/source/audio/exportcodetry001~/CommonTablaTunLib/linkedlist.h:33:28: warning: this function declaration is not a prototype [-Wstrict-prototypes]
t_LinkList* LinkList_Create();
apparently this is caused by functions declared with no arguments and no void between parens. like bang();
Any ideas on fixing this without causing ice nine to spread throughout my computer?