Skip to content

Commit 2a85781

Browse files
authored
Merge pull request #1632 from jsks/jsks-channel
Export channel utilities
2 parents 7c15e7f + e7bb0dd commit 2a85781

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/include/janet.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1465,10 +1465,10 @@ JANET_API int32_t janet_abstract_incref(void *abst);
14651465
JANET_API int32_t janet_abstract_decref(void *abst);
14661466

14671467
/* Expose channel utilities */
1468-
JanetChannel *janet_channel_make(uint32_t limit);
1469-
JanetChannel *janet_channel_make_threaded(uint32_t limit);
1470-
JanetChannel *janet_getchannel(const Janet *argv, int32_t n);
1471-
JanetChannel *janet_optchannel(const Janet *argv, int32_t argc, int32_t n, JanetChannel *dflt);
1468+
JANET_API JanetChannel *janet_channel_make(uint32_t limit);
1469+
JANET_API JanetChannel *janet_channel_make_threaded(uint32_t limit);
1470+
JANET_API JanetChannel *janet_getchannel(const Janet *argv, int32_t n);
1471+
JANET_API JanetChannel *janet_optchannel(const Janet *argv, int32_t argc, int32_t n, JanetChannel *dflt);
14721472
JANET_API int janet_channel_give(JanetChannel *channel, Janet x);
14731473
JANET_API int janet_channel_take(JanetChannel *channel, Janet *out);
14741474

0 commit comments

Comments
 (0)