mirror of
https://github.com/plappermaul/realtek-doc.git
synced 2026-02-17 09:41:17 +01:00
46 lines
999 B
C
46 lines
999 B
C
/*
|
|
* Copyright (C) 2011 Realtek Semiconductor Corp.
|
|
* All Rights Reserved.
|
|
*
|
|
* This program is the proprietary software of Realtek Semiconductor
|
|
* Corporation and/or its licensors, and only be used, duplicated,
|
|
* modified or distributed under the authorized license from Realtek.
|
|
*
|
|
* ANY USE OF THE SOFTWARE OTHER THAN AS AUTHORIZED UNDER
|
|
* THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
|
|
*
|
|
*
|
|
* *
|
|
* $Revision$
|
|
* $Date$
|
|
*
|
|
* Purpose : the basic head file of Linux user
|
|
*
|
|
* Feature : Provide the GPON Mac Device Driver the basic head file of Linux user
|
|
*
|
|
*/
|
|
|
|
#ifndef _GPON_BASIC_USER_H_
|
|
#define _GPON_BASIC_USER_H_
|
|
#include<string.h>
|
|
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
|
|
#include <sys/sem.h>
|
|
#include <sys/ipc.h>
|
|
|
|
#include<sys/types.h>
|
|
#include<sys/stat.h>
|
|
#include<fcntl.h>
|
|
|
|
#include <errno.h>
|
|
#include <netdb.h>
|
|
#include <netinet/in.h>
|
|
#include<arpa/inet.h>
|
|
#include <sys/socket.h>
|
|
#include<ctype.h>
|
|
#include<unistd.h>
|
|
|
|
#include<sys/ioctl.h>
|
|
|
|
#endif /* _GPON_BASIC_USER_H_ */
|