From 6a96424e9cd900e209197ebd669f98a7e94ee472 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C5=8Dshin?= Date: Mon, 20 May 2024 00:27:39 -0700 Subject: [PATCH] Add copyright notice and CVS header --- libc/stdio/readpassphrase.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/libc/stdio/readpassphrase.c b/libc/stdio/readpassphrase.c index c1d6ea883..bff7a96f3 100644 --- a/libc/stdio/readpassphrase.c +++ b/libc/stdio/readpassphrase.c @@ -1,8 +1,10 @@ /*-*- mode:c;indent-tabs-mode:t;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │ vi: set noet ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi │ ╞══════════════════════════════════════════════════════════════════════════════╡ +│ $OpenBSD: readpassphrase.c,v 1.26 2016/10/18 12:47:18 millert Exp $ │ +│ │ │ Copyright (c) 2000-2002, 2007, 2010 │ -│ Todd C. Miller │ +│ Todd C. Miller │ │ │ │ Permission to use, copy, modify, and distribute this software for any │ │ purpose with or without fee is hereby granted, provided that the above │ @@ -33,6 +35,11 @@ #include "libc/sysv/consts/termios.h" #include "libc/unistd.h" +__notice(readpassphrase_notice, "\ +libbsd readpassphrase (ISC)\n\ +Copyright (c) 2000-2002, 2007, 2010 Todd C. Miller "); +// clang-format off + #ifndef TCSASOFT #define TCSASOFT 0 #endif