mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
Be consistent WRT function argument names. Other arguments only have
types, so remove these names. This also helps by not polluting namespace.
This commit is contained in:
parent
e79f14fad9
commit
f1433817e4
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104561
@ -470,14 +470,14 @@ void m_cat(struct mbuf *, struct mbuf *);
|
||||
void m_chtype(struct mbuf *, short);
|
||||
void m_clget(struct mbuf *, int);
|
||||
void m_extadd(struct mbuf *, caddr_t, u_int,
|
||||
void (*free)(void *, void *), void *, int, int);
|
||||
void (*)(void *, void *), void *, int, int);
|
||||
void m_copyback(struct mbuf *, int, int, caddr_t);
|
||||
void m_copydata(const struct mbuf *, int, int, caddr_t);
|
||||
struct mbuf *m_copym(struct mbuf *, int, int, int);
|
||||
struct mbuf *m_copypacket(struct mbuf *, int);
|
||||
void m_copy_pkthdr(struct mbuf *, struct mbuf *);
|
||||
struct mbuf *m_devget(char *, int, int, struct ifnet *,
|
||||
void (*copy)(char *, caddr_t, u_int));
|
||||
void (*)(char *, caddr_t, u_int));
|
||||
struct mbuf *m_dup(struct mbuf *, int);
|
||||
u_int m_fixhdr(struct mbuf *);
|
||||
struct mbuf *m_free(struct mbuf *);
|
||||
|
Loading…
Reference in New Issue
Block a user