]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
39037602 | 2 | * Copyright (c) 2016 Apple Inc. All rights reserved. |
5d5c5d0d | 3 | * |
fe8ab488 | 4 | * @APPLE_LICENSE_HEADER_START@ |
39037602 | 5 | * |
2d21ac55 A |
6 | * This file contains Original Code and/or Modifications of Original Code |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
fe8ab488 A |
9 | * compliance with the License. Please obtain a copy of the License at |
10 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
11 | * file. | |
39037602 | 12 | * |
2d21ac55 A |
13 | * The Original Code and all software distributed under the License are |
14 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
8f6c56a5 A |
15 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
16 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2d21ac55 A |
17 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
18 | * Please see the License for the specific language governing rights and | |
19 | * limitations under the License. | |
39037602 | 20 | * |
fe8ab488 | 21 | * @APPLE_LICENSE_HEADER_END@ |
2d21ac55 | 22 | */ |
39037602 A |
23 | |
24 | #include <signal.h> | |
25 | #include <unistd.h> | |
26 | #include <TargetConditionals.h> | |
27 | ||
2d21ac55 | 28 | /* |
39037602 A |
29 | * system call stubs are no longer generated for these from |
30 | * syscalls.master. Instead, provide simple stubs here. | |
1c79356b | 31 | */ |
1c79356b | 32 | |
39037602 A |
33 | extern int quota(void); |
34 | extern int setquota(void); | |
35 | ||
36 | int quota(void) | |
37 | { | |
38 | return kill(getpid(), SIGSYS); | |
39 | } | |
1c79356b | 40 | |
39037602 | 41 | int setquota(void) |
fe8ab488 | 42 | { |
39037602 | 43 | return kill(getpid(), SIGSYS); |
fe8ab488 | 44 | } |