Skip to content

Commit

Permalink
modem: pipelink: Add missing extern C in header
Browse files Browse the repository at this point in the history
<zephyr/modem/pipelink.h> was missing
"extern C" statement.

Signed-off-by: Jeff Welder <[email protected]>
  • Loading branch information
jeffwelder-ellenbytech authored and aescolar committed Jun 23, 2024
1 parent e5c05da commit af57038
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions include/zephyr/modem/pipelink.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
#ifndef ZEPHYR_MODEM_PIPELINK_
#define ZEPHYR_MODEM_PIPELINK_

#ifdef __cplusplus
extern "C" {
#endif

/**
* @brief Modem pipelink
* @defgroup modem_pipelink Modem pipelink
Expand Down Expand Up @@ -157,4 +161,8 @@ void modem_pipelink_notify_disconnected(struct modem_pipelink *link);

/** @} */

#ifdef __cplusplus
}
#endif

#endif /* ZEPHYR_MODEM_PIPELINK_ */

0 comments on commit af57038

Please sign in to comment.