diff options
author | Greg Hudson <ghudson@mit.edu> | 2011-03-09 21:46:07 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2011-03-09 21:46:07 +0000 |
commit | 7da53e2942176c5ddfe007ba0a36f449e9fdb9fb (patch) | |
tree | 4881536c48fdeb215e0cbaea18263365330ad9b0 /src/util/support/strlcpy.c | |
parent | fe012b454a193c1f81ab8011ecd620750e5869f0 (diff) | |
download | krb5-7da53e2942176c5ddfe007ba0a36f449e9fdb9fb.tar.gz krb5-7da53e2942176c5ddfe007ba0a36f449e9fdb9fb.tar.xz krb5-7da53e2942176c5ddfe007ba0a36f449e9fdb9fb.zip |
Adjust most C source files to match the new standards for copyright
and license comments.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24695 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util/support/strlcpy.c')
-rw-r--r-- | src/util/support/strlcpy.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/util/support/strlcpy.c b/src/util/support/strlcpy.c index a3abbfec98..26ac34effb 100644 --- a/src/util/support/strlcpy.c +++ b/src/util/support/strlcpy.c @@ -1,8 +1,4 @@ /* -*- mode: c; c-file-style: "bsd"; indent-tabs-mode: t -*- */ -#include "k5-platform.h" - -/* Provide strlcpy and strlcat for platforms that don't have them. */ - /* * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> * @@ -19,6 +15,9 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +/* Provide strlcpy and strlcat for platforms that don't have them. */ + +#include "k5-platform.h" #include <sys/types.h> #include <string.h> |