getting closer

This commit is contained in:
Ash Wolf
2023-01-11 22:29:53 +00:00
parent aec1b8dddc
commit 0bec4f557a
133 changed files with 10146 additions and 3285 deletions

View File

@@ -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;
}

View File

@@ -1,6 +1,6 @@
#include "cmdline.h"
File *File_New() {
File *File_New(void) {
File *file;
file = xmalloc(NULL, sizeof(File));
if (!file) {