Files
Arquivotheca.SunOS-4.1.3/include/vfork.h
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

23 lines
392 B
C

/* @(#)vfork.h 1.1 92/07/30 SMI */
/*
* Copyright (c) 1986 by Sun Microsystems, Inc.
*/
/*
* this atrocity is necessary on sparc because registers modified
* by the child get propagated back to the parent via the window
* save/restore mechanism.
*/
#ifndef _vfork_h
#define _vfork_h
extern int vfork();
#ifdef sparc
#pragma unknown_control_flow(vfork)
#endif
#endif /*!_vfork_h*/