X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-getpass.c;h=52d2ee2fe5868d9f820ab8f56283aaa04e3092b0;hb=9a2b952ab7a836a546997e60497d471c326bc6b7;hp=8855ad6c1ee1f9cbd078a2a689fa6f763c9c9ca9;hpb=13b044b5aaf00f6c648e45282b50fb6cc178b4a6;p=gnulib.git diff --git a/tests/test-getpass.c b/tests/test-getpass.c index 8855ad6c1..52d2ee2fe 100644 --- a/tests/test-getpass.c +++ b/tests/test-getpass.c @@ -16,14 +16,19 @@ 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 +#endif + #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; }