heap_test.c revision acbc29f414a6c587f84e5249feab324d1e2c2c51
/*
* Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/* ! \file */
#include <config.h>
#include <atf-c.h>
#include <stdio.h>
#include <string.h>
struct e {
unsigned int value;
unsigned int index;
};
static isc_boolean_t
}
static void
idx(void *p, unsigned int i) {
struct e *e = p;
e->index = i;
}
}
struct e e1 = { 100, 0 };
}
/*
* Main
*/
ATF_TP_ADD_TCS(tp) {
return (atf_no_error());
}