linux/include/linux/ppp_defs.h
<<
>>
Prefs
   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
  13#include <linux/crc-ccitt.h>
  14#include <uapi/linux/ppp_defs.h>
  15
  16#define PPP_FCS(fcs, c) crc_ccitt_byte(fcs, c)
  17#endif /* _PPP_DEFS_H_ */
  18