2012-02-05 11:35:58 -05:00
|
|
|
/****************************************************************
|
|
|
|
* *
|
|
|
|
* Copyright 2001, 2009 Fidelity Information Services, Inc *
|
|
|
|
* *
|
|
|
|
* This source code contains the intellectual property *
|
|
|
|
* of its copyright holder(s), and is made available *
|
|
|
|
* under a license. If you do not know the terms of *
|
|
|
|
* the license, please stop and do not read further. *
|
|
|
|
* *
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef INCR_LINK_INCLUDED
|
|
|
|
#define INCR_LINK_INCLUDED
|
|
|
|
|
|
|
|
#ifdef USHBIN_SUPPORTED
|
2024-07-19 11:43:27 -04:00
|
|
|
#include <incr_link_sp.h>
|
2012-02-05 11:35:58 -05:00
|
|
|
bool incr_link(int file_desc, zro_ent *zro_entry);
|
|
|
|
#else
|
|
|
|
bool incr_link(int file_desc);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __MVS__
|
|
|
|
#define ZOS_FREE_TEXT_SECTION \
|
|
|
|
if (NULL != text_section) \
|
|
|
|
{ \
|
|
|
|
free(text_section); \
|
|
|
|
text_section = NULL; \
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define ZOS_FREE_TEXT_SECTION
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* INCR_LINK_INCLUDED */
|