Browse Source

Dependencies on C library memset() etc., so include <string.h>.

STABLE-2_1_x
likewise 22 years ago
parent
commit
45e36d9f56
  1. 2
      src/netif/ppp/ipcp.c
  2. 3
      src/netif/ppp/lcp.c
  3. 3
      src/netif/ppp/ppp.c
  4. 3
      src/netif/ppp/vj.c

2
src/netif/ppp/ipcp.c

@ -49,6 +49,8 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#include <string.h>
#include "ppp.h"
#if PPP_SUPPORT > 0
#include "auth.h"

3
src/netif/ppp/lcp.c

@ -49,6 +49,9 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#include <string.h>
#include "ppp.h"
#if PPP_SUPPORT > 0
#include "fsm.h"

3
src/netif/ppp/ppp.c

@ -78,6 +78,9 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#include <string.h>
#include "ppp.h"
#if PPP_SUPPORT > 0
#include "randm.h"

3
src/netif/ppp/vj.c

@ -28,11 +28,12 @@
* for a 16 bit processor.
*/
#include <string.h>
#include "ppp.h"
#include "vj.h"
#include "pppdebug.h"
#if VJ_SUPPORT > 0
#if LINK_STATS

Loading…
Cancel
Save