summaryrefslogtreecommitdiff
path: root/tests/actions/addon/custom-package/includes/packages/src/include/hello_utils.h
blob: ca969acd2e792fa07a7c751ceeea7478e61fd56e (plain)
1
2
3
4
5
6
#pragma once
#include <stdio.h>

static inline void hello_utils_greeting(void) {
    printf("hello from the custom package!\n");
}