stat.h revision 86f9994936336675dcc1454ede5857e8851080b6
199a7585544fc162a5f8dd39a6add00776a981efesanjay@google.com/* ===-- stat.h - stub SDK header for compiler-rt ---------------------------===
299a7585544fc162a5f8dd39a6add00776a981efesanjay@google.com *
399a7585544fc162a5f8dd39a6add00776a981efesanjay@google.com *                     The LLVM Compiler Infrastructure
499a7585544fc162a5f8dd39a6add00776a981efesanjay@google.com *
599a7585544fc162a5f8dd39a6add00776a981efesanjay@google.com * This file is dual licensed under the MIT and the University of Illinois Open
699a7585544fc162a5f8dd39a6add00776a981efesanjay@google.com * Source Licenses. See LICENSE.TXT for details.
799a7585544fc162a5f8dd39a6add00776a981efesanjay@google.com *
899a7585544fc162a5f8dd39a6add00776a981efesanjay@google.com * ===-----------------------------------------------------------------------===
999a7585544fc162a5f8dd39a6add00776a981efesanjay@google.com *
1099a7585544fc162a5f8dd39a6add00776a981efesanjay@google.com * This is a stub SDK header file. This file is not part of the interface of
1199a7585544fc162a5f8dd39a6add00776a981efesanjay@google.com * this library nor an official version of the appropriate SDK header. It is
12 * intended only to stub the features of this header required by compiler-rt.
13 *
14 * ===-----------------------------------------------------------------------===
15 */
16
17#ifndef __SYS_STAT_H__
18#define __SYS_STAT_H__
19
20typedef unsigned int mode_t;
21
22int mkdir(const char *, mode_t);
23
24#endif /* __SYS_STAT_H__ */
25