Files
Arquivotheca.SunOS-4.1.4/include/vfork.h
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

23 lines
392 B
C

/* @(#)vfork.h 1.1 94/10/31 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*/