ppp_defs.h 454 B

1234567891011121314151617
  1. /*
  2. * ppp_defs.h - PPP definitions.
  3. *
  4. * Copyright 1994-2000 Paul Mackerras.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * version 2 as published by the Free Software Foundation.
  9. */
  10. #ifndef _PPP_DEFS_H_
  11. #define _PPP_DEFS_H_
  12. #include <linux/crc-ccitt.h>
  13. #include <uapi/linux/ppp_defs.h>
  14. #define PPP_FCS(fcs, c) crc_ccitt_byte(fcs, c)
  15. #endif /* _PPP_DEFS_H_ */