Forgot to remove argc from function decl

Thanks FRIGN for noticing this.
This commit is contained in:
sin 2013-11-30 21:11:19 +00:00
parent 38ca9a24c2
commit f1f0fba630
1 changed files with 1 additions and 2 deletions

View File

@ -6,7 +6,6 @@ struct crypt_ops {
void *s;
};
int cryptmain(int argc, char **,
struct crypt_ops *, uint8_t *, size_t);
int cryptmain(int, char **, struct crypt_ops *, uint8_t *, size_t);
int cryptsum(struct crypt_ops *, FILE *, const char *, uint8_t *);
void mdprint(const uint8_t *, const char *, size_t);