mirror of
https://git.wuffs.org/MWCC
synced 2025-12-13 23:26:14 +00:00
getting closer
This commit is contained in:
@@ -451,7 +451,7 @@ int Frameworks_AddFramework(const char *name, const char *version, Boolean hidde
|
||||
return 0;
|
||||
}
|
||||
|
||||
void Framework_GetEnvInfo() {
|
||||
void Framework_GetEnvInfo(void) {
|
||||
char path[256];
|
||||
char *env;
|
||||
char *ptr;
|
||||
@@ -513,7 +513,7 @@ void Framework_GetEnvInfo() {
|
||||
}
|
||||
}
|
||||
|
||||
int Frameworks_GetCount() {
|
||||
int Frameworks_GetCount(void) {
|
||||
return FrameworkInfo.fwsCount;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#include "cmdline.h"
|
||||
|
||||
File *File_New() {
|
||||
File *File_New(void) {
|
||||
File *file;
|
||||
file = xmalloc(NULL, sizeof(File));
|
||||
if (!file) {
|
||||
|
||||
Reference in New Issue
Block a user