terry%mozilla.org 2629614e03 Patch by Bert Driehuis <bert_driehuis@nl.compuware.com> -- use autoconf to find sendmail, other minor portability patches.
git-svn-id: svn://10.0.0.236/trunk@31285 18797224-902f-48f8-a5cc-f745e15eee43
1999-05-12 21:41:57 +00:00

10 lines
151 B
C

#include <stdio.h>
#ifndef __bsdi__
#include <crypt.h>
#endif
main(int argc, char** argv) {
printf("%s\n", crypt(argv[1], "aa"));
return 0;
}