Select Git revision
aes-decrypt-table.c
Forked from
Nettle / nettle
Source project has a limited visibility.
-
Niels Möller authored
* aes-decrypt-table.c (_aes_decrypt_table): ... to a new file. Rev: src/nettle/aes-decrypt-table.c:1.1 Rev: src/nettle/aes-decrypt.c:1.3
Niels Möller authored* aes-decrypt-table.c (_aes_decrypt_table): ... to a new file. Rev: src/nettle/aes-decrypt-table.c:1.1 Rev: src/nettle/aes-decrypt.c:1.3
dummy.c 1001 B
/*
|| 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: dummy.c,v 1.11 2003/03/29 14:22:27 marcus Exp $
*/
/*
* Glue needed on Solaris if libgcc.a isn't compiled with -fpic.
*
* Henrik Grubbstrm 1997-03-06
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* HAVE_CONFIG_H */
#include "global.h"
#ifdef HAVE_MYSQL
typedef INT64 _ll_t;
typedef unsigned INT64 _ull_t;
_ll_t mysql_dummy_dum_dum(_ull_t a, _ull_t b, _ll_t c, _ll_t d) {
#ifdef HAVE_LDIV
ldiv(10, 3);
#endif
#ifdef HAVE_OPEN
open(0, 0);
#endif
#ifdef HAVE_SOPEN
sopen(0, 0, 0);
#endif
#ifdef HAVE_CLOSE
close(0);
#endif
#ifdef HAVE_READ
read(0, 0, 0);
#endif
#ifdef HAVE_FILENO
fileno(0);
#endif
#ifdef HAVE_PUTS
puts(0);
#endif
#ifdef HAVE_FGETS
fgets(0, 0, 0);
#endif
return(a%b+(c%d)+(c/d)+(a/b));
}
#else
static int place_holder; /* Keep the compiler happy */
#endif /* HAVE_MYSQL */