835ee05f3c
After we moved to git $FreeBSD$ is no longer expanded and serves no purpose. Remove them from OpenSSH to reduce diffs against upstream. Sponsored by: The FreeBSD Foundation
18 lines
398 B
C
18 lines
398 B
C
/* $OpenBSD: umac128.c,v 1.2 2018/02/08 04:12:32 dtucker Exp $ */
|
|
|
|
/* undo ssh_namespace.h munging */
|
|
#undef umac_new
|
|
#undef umac_update
|
|
#undef umac_final
|
|
#undef umac_delete
|
|
#undef umac_ctx
|
|
|
|
#define UMAC_OUTPUT_LEN 16
|
|
#define umac_new umac128_new
|
|
#define umac_update umac128_update
|
|
#define umac_final umac128_final
|
|
#define umac_delete umac128_delete
|
|
#define umac_ctx umac128_ctx
|
|
|
|
#include "umac.c"
|