Keep the posix module buildable, and add some CVS sugar for easier scanning.
[reactos.git] / posix / lib / psxdll / sys / stat / umask.c
1 /* $Id: umask.c,v 1.3 2002/10/29 04:45:46 rex Exp $
2 */
3 /*
4 * COPYRIGHT: See COPYING in the top level directory
5 * PROJECT: ReactOS POSIX+ Subsystem
6 * FILE: subsys/psx/lib/psxdll/sys/stat/umask.c
7 * PURPOSE:
8 * PROGRAMMER: KJK::Hyperion <noog@libero.it>
9 * UPDATE HISTORY:
10 * 15/05/2002: Created
11 */
12
13 #include <sys/types.h>
14 #include <sys/stat.h>
15 #include <errno.h>
16
17 mode_t umask(mode_t cmask)
18 {
19 errno = ENOSYS;
20 return (-1);
21 }
22
23 /* EOF */
24