1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/include/net/af: fix doc comment

This commit is contained in:
Francisco Molina 2022-04-08 14:06:54 +02:00
parent e3f9252947
commit 7e520b1194

View File

@ -31,7 +31,7 @@ typedef enum {
AF_UNSPEC = 0, /**< unspecified address family */
#define AF_UNSPEC AF_UNSPEC /**< unspecified address family (as macro) */
AF_UNIX, /**< local to host (pipes, portals) address family. */
#define AF_UNIX AF_UNIX /**< unspecified address family (as macro) */
#define AF_UNIX AF_UNIX /**< local to host (pipes, portals) address family. (as macro) */
AF_PACKET, /**< packet family */
#define AF_PACKET AF_PACKET /**< packet family (as macro) */
AF_INET, /**< internetwork address family: UDP, TCP, etc. */