diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-01-11 22:29:53 +0000 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-01-11 22:29:53 +0000 |
commit | 0bec4f557a96e1a40437cf5af20cc78a5eec8a63 (patch) | |
tree | c1e05ec804c43aa5a8f5f21b0ed02d0587d29563 /unsorted/Projects.c | |
parent | aec1b8dddc68ecb8288ec6132932e4c7b4bca09f (diff) | |
download | MWCC-0bec4f557a96e1a40437cf5af20cc78a5eec8a63.tar.gz MWCC-0bec4f557a96e1a40437cf5af20cc78a5eec8a63.zip |
getting closer
Diffstat (limited to '')
-rw-r--r-- | unsorted/Projects.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unsorted/Projects.c b/unsorted/Projects.c index fda92df..dca9df2 100644 --- a/unsorted/Projects.c +++ b/unsorted/Projects.c @@ -2,7 +2,7 @@ extern char STSbuf[256]; -int GetFileCount() { +int GetFileCount(void) { SInt32 num; CWGetProjectFileCount(parseopts.context, &num); return num; @@ -115,7 +115,7 @@ int AddAccessPath(OSPathSpec *oss, SInt16 type, SInt32 position, Boolean recursi return 1; } -int MoveSystemPathsIntoUserList() { +int MoveSystemPathsIntoUserList(void) { CWResult result = CWParserSwapAccessPaths(parseopts.context); return result == cwNoErr; } |