File: explicit_bzero.h

package info (click to toggle)
signify-openbsd 32-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 676 kB
  • sloc: ansic: 5,445; makefile: 174; sh: 72
file content (17 lines) | stat: -rw-r--r-- 396 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * explicit_bzero.h
 * Copyright (C) 2017 Adrian Perez <aperez@igalia.com>
 *
 * Distributed under terms of the MIT license.
 *
 * IMPORTANT: This file is preprocessed manually and the last non-empty
 * line of the output is used by the Makefile.
 */

#include <string.h>

#if defined(__GLIBC__) && defined(__GLIBC_MINOR__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 25
libc
#else
bundled
#endif