mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
10 lines
151 B
C
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;
|
|
}
|