File: libnettle.map.in

package info (click to toggle)
nettle 3.10.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,508 kB
  • sloc: ansic: 72,410; asm: 21,179; sh: 4,328; makefile: 837; cpp: 71; awk: 7
file content (26 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# libnettle.map.in -- linker version script.           -*- ld-script -*-

#
# The symbol version must be updated on every nettle
# library major number change. That is taken care by
# auto-generating the file.

NETTLE_@LIBNETTLE_MAJOR@
{
  global:
    nettle_*;

  local:
    *;
};

# Internal symbols which are to be used only for unit or other
# testing. Compatibility may break across releases.
NETTLE_INTERNAL_@LIBNETTLE_MAJOR@_@LIBNETTLE_MINOR@
{
  global:
    _nettle_*;

  local:
    *;
};