1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-26 20:02:37 +00:00

Fix warning for missing function prototype in keymaker.c

This commit is contained in:
Nick Briggs
2020-12-07 15:22:47 -08:00
parent a067ab2a67
commit f94570d01c

View File

@@ -13,7 +13,7 @@ static const char *id = "$Id: keymaker.c,v 1.3 1999/05/31 23:35:35 sybalsky Exp
/* =====================================================================
This function is used to generate copyright protection keys for
enue's Medley software. It prompts for a machine's host id and
Venue's Medley software. It prompts for a machine's host id and
the software's expiration date before generating a set of 3 keys.
The external functions called were stored in file 'keylib.o'.
@@ -43,22 +43,9 @@ static const char *id = "$Id: keymaker.c,v 1.3 1999/05/31 23:35:35 sybalsky Exp
#define FAILURE2 -2
#define FAILURE3 -3
/************************************************************************/
/* */
/* w r i t e r e s u l t s */
/* */
/* Prints the newly-generated key, along with identifying info */
/* */
/************************************************************************/
void writeresults(FILE *fp, char *host, char *expdate,
unsigned long key1, unsigned long key2, unsigned long key3,
char *info) {
fprintf(fp, "Host ID: %-14s Expiration: %-9s", host, expdate);
fprintf(fp, " Key: %8lx %8lx %8lx", key1, key2, key3);
fprintf(fp, " Doc: %s\n", info);
}
char *info);
/************************************************************************/
/* */
/* */
@@ -184,3 +171,19 @@ int main(int argc, char **argv) {
};
exit(0);
}
/************************************************************************/
/* */
/* w r i t e r e s u l t s */
/* */
/* Prints the newly-generated key, along with identifying info */
/* */
/************************************************************************/
void writeresults(FILE *fp, char *host, char *expdate,
unsigned long key1, unsigned long key2, unsigned long key3,
char *info) {
fprintf(fp, "Host ID: %-14s Expiration: %-9s", host, expdate);
fprintf(fp, " Key: %8lx %8lx %8lx", key1, key2, key3);
fprintf(fp, " Doc: %s\n", info);
}