change things so we conform with the usual prototype for main()
Change-Id: Ia3bfe6bb1b135fdba53ccca1650b0b7223108a27
Reviewed-on: http://gerrit.openafs.org/2850
Reviewed-by: Jeffrey Altman <jaltman@openafs.org>
Tested-by: Jeffrey Altman <jaltman@openafs.org>
Reviewed-by: Derrick Brashear <shadow@dementia.org>
Tested-by: Derrick Brashear <shadow@dementia.org>
#endif
-void
+int
main(int argc, char *argv[])
{
int authenticated = 0;
putenv((char *)new_homestring);
chdir("/tmp");
printf("Type exit to back out.\n");
- execl("/bin/csh", "/bin/csh", NULL);
+ return execl("/bin/csh", "/bin/csh", NULL);
}