/* * Copyright 2000, International Business Machines Corporation and others. * All Rights Reserved. * * This software has been released under the terms of the IBM Public * License. For details, see the LICENSE file in the top-level source * directory or online at http://www.openafs.org/dl/license10.html */ #include #ifdef AFS_HPUX_ENV #include #include #include #include /* insque/remque moved to timer.c where they are used. */ #ifndef AFS_HPUX102_ENV utimes(file,tvp) char *file; struct timeval tvp[2]; { struct utimbuf times; times.actime = tvp[0].tv_sec; times.modtime = tvp[1].tv_sec; return (utime(file,×)); } #endif random() { return rand(); } srandom(seed) { srand(seed); } getdtablesize() { return (20); } setlinebuf(file) FILE *file; { setbuf(file,NULL); } psignal(sig,s) unsigned sig; char *s; { fprintf (stderr,"%s: signal %d\n",s,sig); } #endif /* AFS_HPUX_ENV */