aboutsummaryrefslogtreecommitdiff
path: root/libs/elf/include/elf/format.hpp
blob: b3220f5ddd4fb6ff9bb4f9ac11af0ac3c5038200 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef ELF_FORMAT_HPP
#define ELF_FORMAT_HPP

namespace elf
{

  enum struct format
  {
    elf32,
    elf64,
  };

}  // namespace elf

#endif