]> git.ipfire.org Git - thirdparty/squid.git/blob - lib/stub_memaccount.c
Bug 5162: mgr:index URL do not produce MGR_INDEX template (#1191)
[thirdparty/squid.git] / lib / stub_memaccount.c
1 /*
2 * Copyright (C) 1996-2022 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 /* Stub function for programs not implementing statMemoryAccounted */
10 #include "squid.h"
11 #include "util.h"
12
13 int
14 statMemoryAccounted(void)
15 {
16 return -1;
17 }
18