mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Sponsored by: Serenity Cyber Security, LLC Obtained from: OpenBSD Reviewed by: manu, bz MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D42819 (cherry picked from commit 730387b64e10b617f6f0b6f3a64501dc35dd7861)
12 lines
179 B
C
12 lines
179 B
C
/* Public domain. */
|
|
|
|
#ifndef _LINUXKPI_LINUX_APPLE_GMUX_H
|
|
#define _LINUXKPI_LINUX_APPLE_GMUX_H
|
|
|
|
static inline bool
|
|
apple_gmux_detect(void *a, void *b)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
#endif
|