File: byteswap.patch

package info (click to toggle)
netcdf 1%3A4.9.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 112,640 kB
  • sloc: ansic: 267,462; sh: 12,645; cpp: 5,822; yacc: 2,613; makefile: 1,739; lex: 1,216; xml: 173; awk: 2
file content (16 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Add forward declarations for byteswap8 & byteswap4.
Author: Dennis Heimbigner
Bug: https://github.com/Unidata/netcdf-c/issues/1687

--- a/libdispatch/dfilter.c
+++ b/libdispatch/dfilter.c
@@ -28,6 +28,9 @@
 #include "zdispatch.h"
 #endif
 
+static void byteswap8(unsigned char*);
+static void byteswap4(unsigned char*);
+
 /*
 Unified filter related code
 */