Blame view

include/linux/ppp_defs.h 454 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
  /*
   * ppp_defs.h - PPP definitions.
   *
784db3f06   Paul Mackerras   ppp: Change copyr...
4
   * Copyright 1994-2000 Paul Mackerras.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5
   *
784db3f06   Paul Mackerras   ppp: Change copyr...
6
7
8
   *  This program is free software; you can redistribute it and/or
   *  modify it under the terms of the GNU General Public License
   *  version 2 as published by the Free Software Foundation.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
10
11
  #ifndef _PPP_DEFS_H_
  #define _PPP_DEFS_H_
2c88f4a8b   David Woodhouse   Remove PPP_FCS fr...
12
  #include <linux/crc-ccitt.h>
607ca46e9   David Howells   UAPI: (Scripted) ...
13
  #include <uapi/linux/ppp_defs.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14

607ca46e9   David Howells   UAPI: (Scripted) ...
15
  #define PPP_FCS(fcs, c) crc_ccitt_byte(fcs, c)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
  #endif /* _PPP_DEFS_H_ */