From: Gurusamy Sarathy Date: Wed, 2 Jun 1999 02:17:51 +0000 (+0000) Subject: missed a few files X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0221c164222f9d91820826506118f46ffa08dd46;p=p5sagit%2Fp5-mst-13.2.git missed a few files p4raw-id: //depot/perl@3517 --- diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs index 4a5a2a0..b228e1b 100644 --- a/ext/POSIX/POSIX.xs +++ b/ext/POSIX/POSIX.xs @@ -316,8 +316,7 @@ char *tzname[] = { "" , "" }; #ifdef STRUCT_TM_HASZONE static void -init_tm(ptm) /* see mktime, strftime and asctime */ - struct tm *ptm; +init_tm(struct tm *ptm) /* see mktime, strftime and asctime */ { Time_t now; (void)time(&now); diff --git a/jpl/JNI/JNI.xs b/jpl/JNI/JNI.xs index 97416db..8a3015a 100644 --- a/jpl/JNI/JNI.xs +++ b/jpl/JNI/JNI.xs @@ -17,7 +17,8 @@ extern int jpldebug; #define SysRet jint -static void call_my_exit(jint status) +static void +call_my_exit(jint status) { my_exit(status); } @@ -418,17 +419,14 @@ cleanup: } static int -not_here(s) -char *s; +not_here(char *s) { croak("%s not implemented on this architecture", s); return -1; } static double -constant(name, arg) -char *name; -int arg; +constant(char *name, int arg) { errno = 0; switch (*name) {