Skip to content

Commit

Permalink
posix: do not export _init and _cleanup functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Gottox committed Aug 18, 2024
1 parent dd08fb7 commit aec827c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions libsqsh/include/sqsh_posix_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ struct SqshThreadpool {
struct CxThreadpool pool;
};

int sqsh__threadpool_init(struct SqshThreadpool *pool, size_t threads);
SQSH_NO_EXPORT int
sqsh__threadpool_init(struct SqshThreadpool *pool, size_t threads);

int sqsh__threadpool_cleanup(struct SqshThreadpool *pool);
SQSH_NO_EXPORT int sqsh__threadpool_cleanup(struct SqshThreadpool *pool);

#ifdef __cplusplus
}
Expand Down

0 comments on commit aec827c

Please sign in to comment.