1/*
2 * Copyright 2011 Google Inc. All Rights Reserved.
3 * Author: yugui@google.com (Yugui Sonoda)
4 * */
5#ifndef RUBY_NACL_STAT_H
6#define RUBY_NACL_STAT_H
7mode_t umask(mode_t mask);
8struct stat;
9int lstat(const char* path, struct stat* result);
10#endif
11