| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | /* |
| 4 | * This file has been split into three parts: |
| 5 | * - eval-parser.c: Parser implementation |
| 6 | * - eval-execute.c: Execution/evaluation logic |
| 7 | * - eval-utils.c: Common utilities |
| 8 | * |
| 9 | * Any new changes should be made to those files instead of this one. |
| 10 | * This file is now just a stub for backward compatibility. |
| 11 | */ |
| 12 | |
| 13 | #include "../libnetdata.h" |
| 14 | #include "eval-internal.h" |