Skip to content

Commit

Permalink
Merge pull request #293 from Gottox/fix/remove-exports
Browse files Browse the repository at this point in the history
posix: do not export _init and _cleanup functions
  • Loading branch information
Gottox authored Aug 18, 2024
2 parents dd08fb7 + aec827c commit bc4b798
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 bc4b798

Please sign in to comment.