]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
remove leftover RSAREF tidbit global.h no longer used
authorDave Hart <hart@ntp.org>
Thu, 5 Nov 2009 01:33:53 +0000 (01:33 +0000)
committerDave Hart <hart@ntp.org>
Thu, 5 Nov 2009 01:33:53 +0000 (01:33 +0000)
bk: 4af22b819_-3nM2VPbmGVEsbZPo6Eg

include/Makefile.am
include/global.h [deleted file]

index 289427962bc673f9a9050c8d1e3fdfe16a4376c1..517a66802cc2b16970bbf406b01345572b876481 100644 (file)
@@ -10,7 +10,6 @@ noinst_HEADERS =      \
        ascii.h         \
        audio.h         \
        binio.h         \
-       global.h        \
        gps.h           \
        hopf6039.h      \
        icom.h          \
diff --git a/include/global.h b/include/global.h
deleted file mode 100644 (file)
index 2848b8b..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/* GLOBAL.H - RSAREF types and constants */
-
-/* Copyright (C) RSA Laboratories, a division of RSA Data Security,
-     Inc., created 1991. All rights reserved.
- */
-
-/*
- * Note: the modifications are necessary for little-endian machines
- */
-#include "ntp_types.h"                 /* local modification */
-
-#ifndef _GLOBAL_H_
-#define _GLOBAL_H_ 1
-
-/* POINTER defines a generic pointer type */
-typedef unsigned char *POINTER;
-
-/* UINT2 defines a two byte word */
-typedef unsigned short int UINT2;
-
-/* UINT4 defines a four byte word */
-typedef u_int32 UINT4;                 /* local modification */
-
-/* BYTE defines a unsigned character */
-typedef unsigned char BYTE;            /* local modification for RSAEuro */
-
-#ifndef NULL_PTR
-#define NULL_PTR ((POINTER)0)
-#endif
-
-#ifndef UNUSED_ARG
-#define UNUSED_ARG(x) x = *(&x);
-#endif
-
-#endif /* end _GLOBAL_H_ */