1 /* $OpenBSD: elf64.c,v 1.2 2019/04/10 04:17:34 deraadt Exp $ */
2
3 /*
4 * Copyright (c) 2010 Mark Kettenis
5 *
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
19 #include <lib/libkern/libkern.h>
20 #include <lib/libsa/stand.h>
21
22 #include <sys/param.h>
23 #include <sys/exec.h>
24
25 #include "../../../../lib/libsa/loadfile.h"
26
27 #undef ELFSIZE
28 #define ELFSIZE 64
29
30 #include <sys/exec_elf.h>
31
32 int
ELFNAME(exec)33 ELFNAME(exec)(int fd, Elf_Ehdr *elf, uint64_t *marks, int flags)
34 {
35 return 1;
36 }
37