diff options
author | Guy Harris <guy@alum.mit.edu> | 2018-08-31 19:55:36 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2018-08-31 19:55:36 -0700 |
commit | 9c3cc5e26f74c3259a3428cae034ac818ba56fd9 (patch) | |
tree | ca69a85dd874a8483cbd0a8ae814c76459119575 /pcap-int.h | |
parent | 225af6c3e8ca2fc63f20761db87af801b83d26da (diff) |
Match the style of other declarations in this file.
Diffstat (limited to 'pcap-int.h')
-rw-r--r-- | pcap-int.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -496,9 +496,8 @@ struct bpf_aux_data { * Filtering routine that takes the auxiliary data as an additional * argument. */ -extern u_int bpf_filter_with_aux_data(const struct bpf_insn *pc, - const u_char *p, u_int wirelen, u_int buflen, - const struct bpf_aux_data *aux_data); +u_int bpf_filter_with_aux_data(const struct bpf_insn *, + const u_char *, u_int, u_int, const struct bpf_aux_data *); /* * Internal interfaces for both "pcap_create()" and routines that |