dirent.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * dirent.h --
  3.  *
  4.  * This file is a replacement for <dirent.h> in systems that
  5.  * support the old BSD-style <sys/dir.h> with a "struct direct".
  6.  *
  7.  * Copyright (c) 1991 The Regents of the University of California.
  8.  * Copyright (c) 1994 Sun Microsystems, Inc.
  9.  *
  10.  * See the file "license.terms" for information on usage and redistribution
  11.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12.  *
  13.  * RCS: @(#) $Id: dirent.h,v 1.2 1998/09/14 18:39:44 stanton Exp $
  14.  */
  15. #ifndef _DIRENT
  16. #define _DIRENT
  17. #include <sys/dir.h>
  18. #define dirent direct
  19. #endif /* _DIRENT */