blob: 95a4df3554a4cebdc57283ca791959d3e826227d [file] [log] [blame]
Mark Wielaardde2ed972012-06-05 17:15:16 +02001/* Copyright (C) 2006 Red Hat, Inc.
2 This file is part of elfutils.
3
4 This file is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
8
9 elfutils is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
16
Ulrich Drepperba718b12006-04-04 21:31:16 +000017#include <errno.h>
18#include <error.h>
19#include <stdio.h>
20#include <fcntl.h>
21#include <unistd.h>
22#include <libelf.h>
23
24int
25main (int argc __attribute__ ((unused)), char *argv[])
26{
27 int fd = open (argv[1], O_RDWR);
28 if (fd < 0)
29 error (2, errno, "open: %s", argv[1]);
30
31 if (elf_version (EV_CURRENT) == EV_NONE)
32 error (1, 0, "libelf version mismatch");
33
34 Elf *elf = elf_begin (fd, ELF_C_RDWR_MMAP, NULL);
35 if (elf == NULL)
36 error (1, 0, "elf_begin: %s", elf_errmsg (-1));
37
38 if (elf_update (elf, ELF_C_WRITE) < 0)
39 error (1, 0, "elf_update: %s", elf_errmsg (-1));
40
41 elf_end (elf);
42 close (fd);
43
44 return 0;
45}