]> git.ipfire.org Git - thirdparty/openssl.git/blob - test/testutil/apps_mem.c
testutil: ensure good treatment of argv on non-Unix platforms
[thirdparty/openssl.git] / test / testutil / apps_mem.c
1 /*
2 * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10 #include "apps.h"
11
12 /* shim that avoids sucking in too much from apps/apps.c */
13
14 void* app_malloc(int sz, const char *what)
15 {
16 void *vp = OPENSSL_malloc(sz);
17
18 return vp;
19 }