12540Sdlw /* 2*23046Skre * Copyright (c) 1980 Regents of the University of California. 3*23046Skre * All rights reserved. The Berkeley software License Agreement 4*23046Skre * specifies the terms and conditions for redistribution. 52540Sdlw * 6*23046Skre * @(#)sleep_.c 5.1 06/07/85 7*23046Skre */ 8*23046Skre 9*23046Skre /* 102540Sdlw * sleep for awhile 112540Sdlw * 122540Sdlw * calling sequence: 132540Sdlw * call sleep(seconds) 142540Sdlw * where: 152540Sdlw * seconds is an integer number of seconds to sleep (see sleep(3)) 162540Sdlw */ 172540Sdlw 182540Sdlw sleep_(sec) 192540Sdlw long *sec; 202540Sdlw { 212540Sdlw sleep((unsigned int)*sec); 222540Sdlw } 23