Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-gnome
Path: blob/main/biology/fastx-toolkit/files/patch-src_libfastx_fastx.h
17459 views
1
--- src/libfastx/fastx.h.orig 2018-05-16 14:50:08 UTC
2
+++ src/libfastx/fastx.h
3
@@ -58,7 +58,7 @@ typedef enum {
4
OUTPUT_SAME_AS_INPUT=3
5
} OUTPUT_FILE_TYPE;
6
7
-#pragma pack(1)
8
+#pragma pack(push,1)
9
typedef struct
10
{
11
/* Record data - common for FASTA/FASTQ */
12
@@ -115,6 +115,7 @@ typedef struct
13
FILE* input;
14
FILE* output;
15
} FASTX ;
16
+#pragma pack(pop)
17
18
19
void fastx_init_reader(FASTX *pFASTX, const char* filename,
20
21