summaryrefslogtreecommitdiff
path: root/awk.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2023-03-18 22:22:31 +0200
committerArnold D. Robbins <arnold@skeeve.com>2023-03-18 22:22:31 +0200
commit29e74d75768f25cd6b0592d21c029436a57b18e7 (patch)
tree95b4d1f0e49a044b475d6522998dd43295c7ee45 /awk.h
parent11dd1f9cc4f36ab2ae0f56ee54832781b61bdaa9 (diff)
downloadgawk-29e74d75768f25cd6b0592d21c029436a57b18e7.tar.gz
Allow input records longer than INT_MAX.
Diffstat (limited to 'awk.h')
-rw-r--r--awk.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/awk.h b/awk.h
index 661eb637..afe90f0a 100644
--- a/awk.h
+++ b/awk.h
@@ -1569,7 +1569,7 @@ extern NODE *get_actual_argument(NODE *, int, bool);
#endif
/* field.c */
extern void init_fields(void);
-extern void set_record(const char *buf, int cnt, const awk_fieldwidth_info_t *);
+extern void set_record(const char *buf, size_t cnt, const awk_fieldwidth_info_t *);
extern void reset_record(void);
extern void rebuild_record(void);
extern void set_NF(void);