12345678910111213141516171819202122232425262728293031 |
- /*====================================================================*
- *
- * Copyright (c) 2013 Qualcomm Atheros, Inc.
- *
- * All rights reserved.
- *
- *====================================================================*/
- /*====================================================================*
- *
- * if.h - substitute net/if.h for systems without one;
- *
- *--------------------------------------------------------------------*/
- #ifndef IF_HEADER
- #define IF_HEADER
- /*====================================================================*
- * constants;
- *--------------------------------------------------------------------*/
- #if defined (WIN32)
- #define IF_NAMESIZE 128
- #endif
- /*====================================================================*
- * end;
- *--------------------------------------------------------------------*/
- #endif
|