Use inline functions.

This commit is contained in:
Nicolás A. Ortega 2017-02-06 17:50:26 +01:00
parent a3ec19d47c
commit bdea1979e8
No known key found for this signature in database
GPG Key ID: 614272579C2070D1

View File

@ -259,8 +259,8 @@ releaseMemory:
return exitCode;
}
void printUsage(char *progName) {
inline void printUsage(char *progName) {
printf("%s [[-f <file> [-e <file> | -q]] [-b <base>] | [-h] | [-v]]\n", progName);
}
void leave() { run = false; }
inline void leave() { run = false; }