* lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
[gnulib.git] / tests / test-getpass.c
index 18485d9..52d2ee2 100644 (file)
 #include <stdio.h>
 #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;
 }