summaryrefslogtreecommitdiff
path: root/src/internal/slibtool_driver_impl.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-02-19 02:30:23 +0000
committermidipix <writeonce@midipix.org>2024-02-19 02:59:31 +0000
commitea41378c1731e3d3b0faff05346d1aac467823b0 (patch)
tree121851c0d7c6a2100d65154b0226e3db3f1cfdb9 /src/internal/slibtool_driver_impl.h
parentf3d47a5271ef3cbe5755d1dd51bd96508aa0c3bc (diff)
downloadslibtool-ea41378c1731e3d3b0faff05346d1aac467823b0.tar.bz2
slibtool-ea41378c1731e3d3b0faff05346d1aac467823b0.tar.xz
library api's: _lib_ (program driver) namespace overhaul.
Diffstat (limited to 'src/internal/slibtool_driver_impl.h')
-rw-r--r--src/internal/slibtool_driver_impl.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/internal/slibtool_driver_impl.h b/src/internal/slibtool_driver_impl.h
index e817ac9..e30514d 100644
--- a/src/internal/slibtool_driver_impl.h
+++ b/src/internal/slibtool_driver_impl.h
@@ -334,42 +334,42 @@ static inline char ** slbt_driver_envp(const struct slbt_driver_ctx * dctx)
static inline int slbt_driver_fdin(const struct slbt_driver_ctx * dctx)
{
struct slbt_fd_ctx fdctx;
- slbt_get_driver_fdctx(dctx,&fdctx);
+ slbt_lib_get_driver_fdctx(dctx,&fdctx);
return fdctx.fdin;
}
static inline int slbt_driver_fdout(const struct slbt_driver_ctx * dctx)
{
struct slbt_fd_ctx fdctx;
- slbt_get_driver_fdctx(dctx,&fdctx);
+ slbt_lib_get_driver_fdctx(dctx,&fdctx);
return fdctx.fdout;
}
static inline int slbt_driver_fderr(const struct slbt_driver_ctx * dctx)
{
struct slbt_fd_ctx fdctx;
- slbt_get_driver_fdctx(dctx,&fdctx);
+ slbt_lib_get_driver_fdctx(dctx,&fdctx);
return fdctx.fderr;
}
static inline int slbt_driver_fdlog(const struct slbt_driver_ctx * dctx)
{
struct slbt_fd_ctx fdctx;
- slbt_get_driver_fdctx(dctx,&fdctx);
+ slbt_lib_get_driver_fdctx(dctx,&fdctx);
return fdctx.fdlog;
}
static inline int slbt_driver_fdcwd(const struct slbt_driver_ctx * dctx)
{
struct slbt_fd_ctx fdctx;
- slbt_get_driver_fdctx(dctx,&fdctx);
+ slbt_lib_get_driver_fdctx(dctx,&fdctx);
return fdctx.fdcwd;
}
static inline int slbt_driver_fddst(const struct slbt_driver_ctx * dctx)
{
struct slbt_fd_ctx fdctx;
- slbt_get_driver_fdctx(dctx,&fdctx);
+ slbt_lib_get_driver_fdctx(dctx,&fdctx);
return fdctx.fddst;
}