Select Git revision
Forked from
Nettle / nettle
Source project has a limited visibility.
-
Niels Möller authored
they conficted with the static definition in des.c. Reported by Simon Josefsson. * des.c (DesSmallFipsEncrypt, DesSmallFipsDecrypt): Moved definitions after the definition of the des_kemap array. Rev: src/nettle/ChangeLog:1.206 Rev: src/nettle/des.c:1.8 Rev: src/nettle/desCode.h:1.3
Niels Möller authoredthey conficted with the static definition in des.c. Reported by Simon Josefsson. * des.c (DesSmallFipsEncrypt, DesSmallFipsDecrypt): Moved definitions after the definition of the des_kemap array. Rev: src/nettle/ChangeLog:1.206 Rev: src/nettle/des.c:1.8 Rev: src/nettle/desCode.h:1.3
Object.pmod 484 B
//! $Id: Object.pmod,v 1.1 2005/02/09 16:35:50 mast Exp $
#pike __REAL_VERSION__
#pragma strict_types
constant DESTRUCT_EXPLICIT = __builtin.DESTRUCT_EXPLICIT;
constant DESTRUCT_NO_REFS = __builtin.DESTRUCT_NO_REFS;
constant DESTRUCT_GC = __builtin.DESTRUCT_GC;
constant DESTRUCT_CLEANUP = __builtin.DESTRUCT_CLEANUP;
//! Flags passed to @[lfun::destroy].
//!
//! @note
//! @[Object.DESTRUCT_EXPLICIT] is @expr{0@} and
//! @[Object.DESTRUCT_CLEANUP] is @expr{1@} for compatibility.