X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Fregression%2Fust%2Flibc-wrapper%2Fprog.c;h=882dbb82f63097641d852b1ae54c361c95277de4;hb=849019151cf07f376a4a68ce1669e357f4775657;hp=4eb7d48a5925a212df2f971fdcc8ad9e47646873;hpb=ca72068eb662b086b30bd7c276114aae550a4358;p=lttng-tools.git diff --git a/tests/regression/ust/libc-wrapper/prog.c b/tests/regression/ust/libc-wrapper/prog.c index 4eb7d48a5..882dbb82f 100644 --- a/tests/regression/ust/libc-wrapper/prog.c +++ b/tests/regression/ust/libc-wrapper/prog.c @@ -1,36 +1,25 @@ -/* Copyright (C) 2009 Pierre-Marc Fournier +/* Copyright (C) 2009 Pierre-Marc Fournier * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. + * SPDX-License-Identifier: LGPL-2.1-only * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /* This program is used to test malloc instrumentation with libustinstr-malloc. */ -#include #include +#include #define N_ITER 1000 -int main(int argc, char **argv) +int main(void) { int i; const char teststr[] = "Hello World! 1234567890abc"; void *ptrs[N_ITER]; for (i = 0; i < N_ITER; i++) { - ptrs[i] = malloc(i+1000); + ptrs[i] = malloc(i + 1000); if (!ptrs[i]) { exit(EXIT_FAILURE); }