mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
11 lines
250 B
C
11 lines
250 B
C
|
/*
|
||
|
* Copyright 2011 Google Inc. All Rights Reserved.
|
||
|
* Author: yugui@google.com (Yugui Sonoda)
|
||
|
* */
|
||
|
#ifndef RUBY_NACL_STAT_H
|
||
|
#define RUBY_NACL_STAT_H
|
||
|
mode_t umask(mode_t mask);
|
||
|
struct stat;
|
||
|
int lstat(const char* path, struct stat* result);
|
||
|
#endif
|