Add optional offsets argument to conversion routines.
[gnulib.git] / tests / test-getpass.c
index 8855ad6..52d2ee2 100644 (file)
    with this program; if not, write to the Free Software Foundation,
    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
+#if HAVE_CONFIG_H
+# include <config.h>
+#endif
+
 #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;
 }