blob: be247151b8238c1be088b664799a2f5cd02f0ec0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright 2024 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
#include "include/syscall.h"
SYSCALL_DEFINE1(open, const char* filename, int flags, int mode) {
return 0;
}
SYSCALL_DEFINE1(chmod, const char* filename, int mode) {
return 0;
}
|