X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-getpass.c;h=f8e7fb20af6e45f71097fcbbce66296fe272a09b;hb=11dbc24bbfd94e0e8d36754fe17bb1fdeb58fe5e;hp=8855ad6c1ee1f9cbd078a2a689fa6f763c9c9ca9;hpb=13b044b5aaf00f6c648e45282b50fb6cc178b4a6;p=gnulib.git diff --git a/tests/test-getpass.c b/tests/test-getpass.c index 8855ad6c1..f8e7fb20a 100644 --- a/tests/test-getpass.c +++ b/tests/test-getpass.c @@ -16,14 +16,17 @@ with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include + #include #include "getpass.h" -int main (int argc, char *argv[]) +int +main (int argc, char *argv[]) { - char *pass = getpass("Enter password: "); + char *pass = getpass ("Enter password: "); - printf("The password is `%s'\n", pass); + printf ("The password is `%s'\n", pass); return 0; }