Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b8259d9a authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by David S. Miller
Browse files

[NET]: Remove __ARGS from include/net/slhc_vj.h



I suspect "#define __ARGS(x) ()" was deprecated before I was born.

Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarDomen Puncer <domen@coderock.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 52609c0b
Loading
Loading
Loading
Loading
+8 −13
Original line number Original line Diff line number Diff line
@@ -170,19 +170,14 @@ struct slcompress {
};
};
#define NULLSLCOMPR	(struct slcompress *)0
#define NULLSLCOMPR	(struct slcompress *)0


#define __ARGS(x) x

/* In slhc.c: */
/* In slhc.c: */
struct slcompress *slhc_init __ARGS((int rslots, int tslots));
struct slcompress *slhc_init(int rslots, int tslots);
void slhc_free __ARGS((struct slcompress *comp));
void slhc_free(struct slcompress *comp);


int slhc_compress __ARGS((struct slcompress *comp, unsigned char *icp,
int slhc_compress(struct slcompress *comp, unsigned char *icp, int isize,
			  int isize, unsigned char *ocp, unsigned char **cpp,
		  unsigned char *ocp, unsigned char **cpp, int compress_cid);
			  int compress_cid));
int slhc_uncompress(struct slcompress *comp, unsigned char *icp, int isize);
int slhc_uncompress __ARGS((struct slcompress *comp, unsigned char *icp,
int slhc_remember(struct slcompress *comp, unsigned char *icp, int isize);
			    int isize));
int slhc_toss(struct slcompress *comp);
int slhc_remember __ARGS((struct slcompress *comp, unsigned char *icp,
			  int isize));
int slhc_toss __ARGS((struct slcompress *comp));


#endif	/* _SLHC_H */
#endif	/* _SLHC_H */