summaryrefslogtreecommitdiff
path: root/support/dktools/dk4maodd.c
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-10-12 03:04:00 +0000
committerNorbert Preining <norbert@preining.info>2020-10-12 03:04:00 +0000
commit0ce40abb18ec02ec6fd6bcc5f21612c88daa7578 (patch)
tree416289fe1448873fd8ca33051f50ad85bffa8aaa /support/dktools/dk4maodd.c
parentfdb18507cd80dc17f5a5256153d34668b4f4e61c (diff)
CTAN sync 202010120303
Diffstat (limited to 'support/dktools/dk4maodd.c')
-rw-r--r--support/dktools/dk4maodd.c77
1 files changed, 0 insertions, 77 deletions
diff --git a/support/dktools/dk4maodd.c b/support/dktools/dk4maodd.c
deleted file mode 100644
index 98cd0c45d4..0000000000
--- a/support/dktools/dk4maodd.c
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
-Copyright (C) 2015-2020, Dirk Krause
-SPDX-License-Identifier: BSD-3-Clause
-*/
-
-/*
- WARNING: This file was generated by the dkct program (see
- http://dktools.sourceforge.net/ for details).
- Changes you make here will be lost if dkct is run again!
- You should modify the original source and run dkct on it.
- Original source: dk4maodd.ctr
-*/
-
-/** @file dk4maodd.c The dk4maodd module.
-*/
-
-
-#line 86 "dk4maodd.ctr"
-
-#include "dk4conf.h"
-
-#include "dk4types.h"
-
-
-
-#if DK4_CHAR_SIZE > 1
-#include "dk4maowd.h"
-#else
-#include "dk4mao8d.h"
-#endif
-
-#include "dk4maodd.h"
-#include "dk4error.h"
-
-#if DK4_HAVE_ASSERT_H
-#ifndef ASSERT_H_INCLUDED
-#include <assert.h>
-#define ASSERT_H_INCLUDED 1
-#endif
-#endif
-
-
-int
-dk4ma_write_decimal_unsigned(
- dkChar *dptr, size_t sz, dk4_um_t val, size_t padsz, dk4_er_t *erp
-)
-{
-#if DK4_USE_ASSERT
- assert(NULL != dptr);
- assert(0 < sz);
-#endif
-#if DK4_CHAR_SIZE > 1
- return (dk4ma_write_wc_decimal_unsigned(dptr, sz, val, padsz, erp));
-#else
- return (dk4ma_write_c8_decimal_unsigned(dptr, sz, val, padsz, erp));
-#endif
-}
-
-
-
-int
-dk4ma_write_decimal_signed(
- dkChar *dptr, size_t sz, dk4_im_t val, size_t padsz, dk4_er_t *erp
-)
-{
-#if DK4_USE_ASSERT
- assert(NULL != dptr);
- assert(0 < sz);
-#endif
-#if DK4_CHAR_SIZE > 1
- return (dk4ma_write_wc_decimal_signed(dptr, sz, val, padsz, erp));
-#else
- return (dk4ma_write_c8_decimal_signed(dptr, sz, val, padsz, erp));
-#endif
-}
-
-