Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • wip/dueno/ml-dsa2
  • wip/pacbti2
  • wip/dueno/pacbti
  • wip/dueno/deterministic-ecdsa
  • wip/dueno/kyber2
  • wip/dueno/shake-streaming-update
  • wip/dueno/shake-streaming
  • master-updates
  • release-3.7-fixes
  • fix-chacha-counter
  • arm64
  • delete-1-way-neon
  • fat-build-by-default
  • ppc-chacha-4core
  • delete-internal-name-mangling
  • ppc-gcm
  • ppc-chacha-2core
  • refactor-ecc-mod
  • ppc-chacha-core
  • nettle_3.7.2_release_20210321
  • nettle_3.7.1_release_20210217
  • nettle_3.7_release_20210104
  • nettle_3.7rc1
  • nettle_3.6_release_20200429
  • nettle_3.6rc3
  • nettle_3.6rc2
  • nettle_3.6rc1
  • nettle_3.5.1_release_20190627
  • nettle_3.5_release_20190626
  • nettle_3.5rc1
  • nettle_3.4.1_release_20181204
  • nettle_3.4.1rc1
  • nettle_3.4_release_20171119
  • nettle_3.4rc2
  • nettle_3.4rc1
  • nettle_3.3_release_20161001
  • nettle_3.2_release_20160128
  • nettle_3.1.1_release_20150424
  • nettle_3.1_release_20150407
40 results

aclocal.m4

Blame
  • Forked from Nettle / nettle
    Source project has a limited visibility.
    main.c 11.42 KiB
    /*
    || This file is part of Pike. For copyright information see COPYRIGHT.
    || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
    || for more information.
    || $Id: main.c,v 1.225 2006/07/05 00:37:18 mast Exp $
    */
    
    #include "global.h"
    #include "fdlib.h"
    #include "backend.h"
    #include "module.h"
    #include "object.h"
    #include "lex.h"
    #include "pike_types.h"
    #include "builtin_functions.h"
    #include "array.h"
    #include "stralloc.h"
    #include "interpret.h"
    #include "pike_error.h"
    #include "pike_macros.h"
    #include "callback.h"
    #include "signal_handler.h"
    #include "threads.h"
    #include "dynamic_load.h"
    #include "gc.h"
    #include "multiset.h"
    #include "mapping.h"
    #include "cpp.h"
    #include "main.h"
    #include "operators.h"
    #include "rbtree.h"
    #include "pike_security.h"
    #include "constants.h"
    #include "version.h"
    #include "program.h"
    #include "pike_rusage.h"
    #include "module_support.h"
    #include "opcodes.h"
    
    #ifdef AUTO_BIGNUM
    #include "bignum.h"
    #endif
    
    #include "pike_embed.h"
    
    #if defined(__linux__) && defined(HAVE_DLOPEN) && defined(HAVE_DLFCN_H)
    #include <dlfcn.h>
    #endif
    
    #include "las.h"
    
    #ifdef HAVE_UNISTD_H
    #include <unistd.h>
    #endif
    #ifdef HAVE_ERRNO_H
    #include <errno.h>
    #endif
    
    #ifdef HAVE_LOCALE_H
    #include <locale.h>
    #endif
    
    #include "time_stuff.h"
    
    #ifdef HAVE_SYS_RESOURCE_H
    #include <sys/resource.h>
    #endif
    
    /* Define this to trace the execution of main(). */
    /* #define TRACE_MAIN */