1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: fix build failure with gcc-15.
Author: Étienne Mollier <emollier@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097779
Forwarded: no
Last-Update: 2025-09-24
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- readseq.orig/ureadseq.c
+++ readseq/ureadseq.c
@@ -105,9 +105,9 @@
char s[256], *sp;
#ifdef ARB
- int (*isseqcharfirst8)(); /* Patch by o. strunk (ARB) to allow numbers in genbank sequences*/
+ int (*isseqcharfirst8)(int); /* Patch by o. strunk (ARB) to allow numbers in genbank sequences*/
#endif
- int (*isseqchar)();
+ int (*isseqchar)(int);
/* int (*isseqchar)(int c); << sgi cc hates (int c) */
};
|