From: Kevin Day Date: Tue, 9 Aug 2022 01:40:55 +0000 (-0500) Subject: Regression: Recent changes in f_account header structure is incomplete. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=fca46e7ca4485ca806644fde770d46ad29566fa5;p=fll Regression: Recent changes in f_account header structure is incomplete. The commit 0c4573ee9698e6f0980c4496a5f23b42946adbd3 (and possibly later commits) resulted in compilation failure. --- diff --git a/build/level_0/settings b/build/level_0/settings index 034494d..fd4c97f 100644 --- a/build/level_0/settings +++ b/build/level_0/settings @@ -19,7 +19,7 @@ build_language c build_libraries -lc -lcap -build_sources_library account.c private-account.c account/private-accounts.c +build_sources_library account.c private-account.c account/accounts.c account/private-accounts.c build_sources_library capability.c build_sources_library color.c private-color.c color/common.c build_sources_library console.c console/common.c diff --git a/level_0/f_account/c/account.c b/level_0/f_account/c/account.c index 43a79f3..ae15a63 100644 --- a/level_0/f_account/c/account.c +++ b/level_0/f_account/c/account.c @@ -1,4 +1,5 @@ #include "account.h" +#include "account/accounts.h" #include "private-account.h" #ifdef __cplusplus diff --git a/level_0/f_account/c/account/private-accounts.c b/level_0/f_account/c/account/private-accounts.c index a9ba955..ffd7d78 100644 --- a/level_0/f_account/c/account/private-accounts.c +++ b/level_0/f_account/c/account/private-accounts.c @@ -1,4 +1,5 @@ #include "../account.h" +#include "accounts.h" #include "private-accounts.h" #ifdef __cplusplus diff --git a/level_0/f_account/c/private-account.c b/level_0/f_account/c/private-account.c index 64b0ef3..3511d3f 100644 --- a/level_0/f_account/c/private-account.c +++ b/level_0/f_account/c/private-account.c @@ -1,4 +1,5 @@ #include "account.h" +#include "account/accounts.h" #include "private-account.h" #ifdef __cplusplus