Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions tdishr/CvtConvertFloat.c
Original file line number Diff line number Diff line change
Expand Up @@ -567,10 +567,6 @@ static void unpack_ibm_s(CVT_IBM_SHORT input_value,
static void unpack_cray(CVT_CRAY input_value, UNPACKED_REAL intermediate_value,
uint32_t options __attribute__((unused)));

extern EXPORT CVT_STATUS CvtConvertFloat(void *input_value, uint32_t input_type,
void *output_value,
uint32_t output_type)

/*
**=============================================================================
**
Expand Down Expand Up @@ -635,6 +631,9 @@ extern EXPORT CVT_STATUS CvtConvertFloat(void *input_value, uint32_t input_type,
**
**=============================================================================
*/
extern EXPORT CVT_STATUS CvtConvertFloat(void *input_value, uint32_t input_type,
void *output_value,
uint32_t output_type)
{
/*
** Local variable definitions.
Expand Down
3 changes: 2 additions & 1 deletion tdishr/DummyRoutines.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
return 0; \
}
/* dummy(LibConvertDateString) */
dummy(LibFindVmZone) dummy(LibShowVmZone)
dummy(LibFindVmZone);
dummy(LibShowVmZone);
Loading