15 lines
221 B
C
15 lines
221 B
C
|
/*
|
||
|
* Copyright 2009, Axel Dörfler, axeld@pinc-software.de.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef UMASK_H
|
||
|
#define UMASK_H
|
||
|
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
|
||
|
extern mode_t __gUmask;
|
||
|
|
||
|
#endif /* UMASK_H */
|