summaryrefslogtreecommitdiff
path: root/astro/xephem/files/patch-usno.c
diff options
context:
space:
mode:
authorWen Heping <wen@FreeBSD.org>2022-05-03 06:41:18 +0000
committerWen Heping <wen@FreeBSD.org>2022-05-03 06:41:18 +0000
commite460db34a36210b10f36003afd0c47f58fb461e9 (patch)
tree0cc0100a49bcbdd6edb1c52ec6fb69eee0132a03 /astro/xephem/files/patch-usno.c
parentwww/chromium: update to 101.0.4951.54 (diff)
astro/xephem: Update to 4.1.0
Update LICENSE
Diffstat (limited to 'astro/xephem/files/patch-usno.c')
-rw-r--r--astro/xephem/files/patch-usno.c49
1 files changed, 0 insertions, 49 deletions
diff --git a/astro/xephem/files/patch-usno.c b/astro/xephem/files/patch-usno.c
deleted file mode 100644
index af6acd1f2cab..000000000000
--- a/astro/xephem/files/patch-usno.c
+++ /dev/null
@@ -1,49 +0,0 @@
---- usno.c.orig 2005-03-20 11:04:51 UTC
-+++ usno.c
-@@ -14,8 +14,8 @@
- #define CATBPR 12 /* bytes per star record in .cat file */
- #define ACCBPR 30 /* bytes per record in .acc file */
-
--typedef unsigned int UI;
--typedef unsigned char UC;
-+typedef unsigned int XE_UI;
-+typedef unsigned char XE_UC;
-
- /* One Field star */
- typedef struct {
-@@ -36,7 +36,7 @@ static int corner (double r0, double d0, double rov, i
- double lr[2], int *nd, double fd[2], double ld[2], int zone[2], char msg[]);
- static int fetchSwath (int zone, double maxmag, double fr, double lr,
- double fd, double ld, StarArray *sap, char msg[]);
--static int crackCatBuf (UC buf[CATBPR], FieldStar *fsp);
-+static int crackCatBuf (XE_UC buf[CATBPR], FieldStar *fsp);
- static int addGS (StarArray *sap, FieldStar *fsp);
-
- static char *cdpath; /* where CD rom is mounted */
-@@ -236,7 +236,7 @@ double ld, StarArray *sap, char msg[])
- {
- char fn[1024];
- char buf[ACCBPR];
-- UC catbuf[CATBPR];
-+ XE_UC catbuf[CATBPR];
- FieldStar fs;
- long frec;
- long os;
-@@ -314,13 +314,13 @@ double ld, StarArray *sap, char msg[])
- * return 0 if ok, else -1.
- */
- static int
--crackCatBuf (UC buf[CATBPR], FieldStar *fsp)
-+crackCatBuf (XE_UC buf[CATBPR], FieldStar *fsp)
- {
--#define BEUPACK(b) (((UI)((b)[0])<<24) | ((UI)((b)[1])<<16) | ((UI)((b)[2])<<8)\
-- | ((UI)((b)[3])))
-+#define BEUPACK(b) (((XE_UI)((b)[0])<<24) | ((XE_UI)((b)[1])<<16) | ((XE_UI)((b)[2])<<8)\
-+ | ((XE_UI)((b)[3])))
- double ra, dec;
- int red, blu;
-- UI mag;
-+ XE_UI mag;
-
- /* first 4 bytes are packed RA, big-endian */
- ra = BEUPACK(buf)/(100.0*3600.0*15.0);