Import ntp 4.2.8p3

This commit is contained in:
christos 2015-07-10 13:11:02 +00:00
parent f17b710f3d
commit 01c0ef3e3a
134 changed files with 269 additions and 13 deletions

View File

@ -1,3 +1,5 @@
/* $NetBSD: refidsmear.h,v 1.1.1.2 2015/07/10 13:11:03 christos Exp $ */
extern l_fp convertRefIDToLFP(uint32_t r);
extern uint32_t convertLFPToRefID(l_fp num);

View File

@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: platform.h.in,v 1.1.1.3 2015/07/10 13:02:51 christos Exp $ */
/* Id: platform.h.in,v 1.56 2010/12/18 01:56:23 each Exp */
#ifndef ISC_PLATFORM_H
#define ISC_PLATFORM_H 1

View File

@ -1,3 +1,5 @@
/* $NetBSD: jsondump.c,v 1.1.1.2 2015/07/10 13:11:03 christos Exp $ */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -1,3 +1,5 @@
/* $NetBSD: simple.c,v 1.1.1.2 2015/07/10 13:11:03 christos Exp $ */
#include <stdio.h>
#include <string.h>
#include "../jsmn.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: refidsmear.c,v 1.1.1.2 2015/07/10 13:11:04 christos Exp $ */
#include <config.h>
#include <ntp.h>

View File

@ -1,3 +1,5 @@
/* $NetBSD: rc_cmdlength.c,v 1.1.1.2 2015/07/10 13:11:07 christos Exp $ */
#include <config.h>
#if HAVE_UNISTD_H

View File

@ -718,43 +718,43 @@ sub genfile
}
;# now reclaim memory used for files no longer referenced ...
local(%Names);
grep($Names{$_} = 1,@newfiles);
grep(Names{_} = 1,@newfiles);
foreach (keys %F_key)
{
next if defined($Names{$_});
next if defined(Names{_});
delete $F_key{$_};
$verbose > 2 && print "no longer referenced: \"$_\"\n";
}
%Names = ();
grep($Names{$_} = 1,values(%F_key));
grep(Names{_} = 1,values(%F_key));
foreach (keys %F_name)
{
next if defined($Names{$_});
next if defined(Names{_});
delete $F_name{$_};
$verbose > 2 && print "unref name($_)= $F_name{$_}\n";
}
foreach (keys %F_size)
{
next if defined($Names{$_});
next if defined(Names{_});
delete $F_size{$_};
$verbose > 2 && print "unref size($_)\n";
}
foreach (keys %F_mtime)
{
next if defined($Names{$_});
next if defined(Names{_});
delete $F_mtime{$_};
$verbose > 2 && print "unref mtime($_)\n";
}
foreach (keys %F_first)
{
next if defined($Names{$_});
next if defined(Names{_});
delete $F_first{$_};
$verbose > 2 && print "unref first($_)\n";
}
foreach (keys %F_last)
{
next if defined($Names{$_});
next if defined(Names{_});
delete $F_last{$_};
$verbose > 2 && print "unref last($_)\n";
}

View File

@ -1,6 +1,6 @@
#! @PATH_PERL@ -w
#
# $Id: ntpsweep.in,v 1.1.1.2 2015/07/10 13:02:49 christos Exp $
# Id
#
# DISCLAIMER
#

View File

@ -1,5 +1,5 @@
#! @PATH_PERL@ -w
# $Id: plot_summary.in,v 1.1.1.3 2015/07/10 13:02:49 christos Exp $
# Id
#
# Use Gnuplot to display data in summary files produced by summary.pl.
# This script requires GNUPLOT 3.7!

View File

@ -1,5 +1,5 @@
#! @PATH_PERL@ -w
# $Id: summary.in,v 1.1.1.3 2015/07/10 13:02:49 christos Exp $
# Id
# Perl version of (summary.sh, loop.awk, peer.awk):
# Create summaries from xntpd's loop and peer statistics.
#

View File

@ -1,3 +1,5 @@
/* $NetBSD: colcomp.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* COLLATE COMPARE, COMPARES DIGITS NUMERICALLY AND OTHERS IN ASCII */
/*

View File

@ -1,3 +1,5 @@
/* $NetBSD: pkgver.h,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/*
*
* Copyright 2015 Harlan Stenn. Used by NTP with permission.

View File

@ -14,7 +14,7 @@
# C99-compliant implementations.
#
# $Id: snprintf.m4,v 1.1.1.2 2015/07/10 13:02:54 christos Exp $
# Id: snprintf.m4,v 1.1.1.1 2008/01/06 03:24:00 holger Exp
# Copyright (c) 2008 Holger Weiss <holger@jhweiss.de>.
#

View File

@ -1,3 +1,5 @@
/* $NetBSD: crypto.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
#include "config.h"
#include "unity.h"
#include "ntp_types.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: g_fileHandlingTest.h,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
#ifndef FILE_HANDLING_TEST_H
#define FILE_HANDLING_TEST_H

View File

@ -1,3 +1,5 @@
/* $NetBSD: g_sntptest.h,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
#ifndef SNTPTEST_H
#define SNTPTEST_H

View File

@ -1,3 +1,5 @@
/* $NetBSD: keyFile.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
#include "config.h"
#include "fileHandlingTest.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: kodDatabase.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
#include "config.h"
#include "ntp_types.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: kodFile.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
#include "config.h"
#include "ntp_types.h"
#include "ntp_stdlib.h" // For estrdup()

View File

@ -1,3 +1,5 @@
/* $NetBSD: networking.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
#include "config.h"
#include "sntptest.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: packetHandling.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
#include "config.h"
#include "ntp_debug.h"
#include "ntp_stdlib.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: packetProcessing.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
#include "config.h"
#include "sntptest.h"
#include "networking.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-crypto.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-keyFile.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-kodDatabase.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-kodFile.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-networking.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-packetHandling.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-packetProcessing.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-utilities.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: utilities.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
#include "config.h"
#include "sntptest.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: runner_maybe.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: unity.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* =========================================================================
Unity Project - A Test Framework for C
Copyright (c) 2007-14 Mike Karlesky, Mark VanderVoord, Greg Williams

View File

@ -1,3 +1,5 @@
/* $NetBSD: unity.h,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* ==========================================
Unity Project - A Test Framework for C
Copyright (c) 2007-14 Mike Karlesky, Mark VanderVoord, Greg Williams

View File

@ -1,3 +1,5 @@
/* $NetBSD: unity_fixture.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
//- Copyright (c) 2010 James Grenning and Contributed to Unity Project
/* ==========================================
Unity Project - A Test Framework for C

View File

@ -1,3 +1,5 @@
/* $NetBSD: unity_fixture.h,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
//- Copyright (c) 2010 James Grenning and Contributed to Unity Project
/* ==========================================
Unity Project - A Test Framework for C

View File

@ -1,3 +1,5 @@
/* $NetBSD: unity_fixture_internals.h,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
//- Copyright (c) 2010 James Grenning and Contributed to Unity Project
/* ==========================================
Unity Project - A Test Framework for C

View File

@ -1,3 +1,5 @@
/* $NetBSD: unity_fixture_malloc_overrides.h,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
//- Copyright (c) 2010 James Grenning and Contributed to Unity Project
/* ==========================================
Unity Project - A Test Framework for C

View File

@ -1,3 +1,5 @@
/* $NetBSD: unity_internals.h,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* ==========================================
Unity Project - A Test Framework for C
Copyright (c) 2007-14 Mike Karlesky, Mark VanderVoord, Greg Williams

View File

@ -1,3 +1,5 @@
/* $NetBSD: version.c,v 1.1.1.2 2015/07/10 13:11:09 christos Exp $ */
/*
* version file for sntp
*/

View File

@ -1,3 +1,5 @@
/* $NetBSD: bug-2803.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
#include <config.h>
#include <stdio.h>

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-bug-2803.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: a_md5encrypt.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "unity.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: atoint.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_stdlib.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: atouint.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_stdlib.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: authkeys.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* This file contains test for both libntp/authkeys.c and libntp/authusekey.c */
#include "config.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: buftvtots.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_types.h"
#include "ntp_stdlib.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: calendar.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_stdlib.h" //test fail without this include, for some reason

View File

@ -1,3 +1,5 @@
/* $NetBSD: caljulian.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_calendar.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: caltontp.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "unity.h"
#include "ntp_calendar.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: calyearstart.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_stdlib.h" //test fail without this include, for some reason

View File

@ -1,3 +1,5 @@
/* $NetBSD: clocktime.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_calendar.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: decodenetnum.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_stdlib.h"
#include "ntp_calendar.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: g_lfptest.h,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
#ifndef NTP_TESTS_LFPTEST_H
#define NTP_TESTS_LFPTEST_H

View File

@ -1,3 +1,5 @@
/* $NetBSD: g_libntptest.h,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "tests_main.h"
extern "C" {

View File

@ -1,3 +1,5 @@
/* $NetBSD: g_sockaddrtest.h,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#ifndef TESTS_SOCKADDRTEST_H
#define TESTS_SOCKADDRTEST_H

View File

@ -1,3 +1,5 @@
/* $NetBSD: g_timestructs.h,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/*
* timestructs.h -- test bed adaptors for time structs.
*

View File

@ -1,3 +1,5 @@
/* $NetBSD: hextoint.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_stdlib.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: hextolfp.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_stdlib.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: humandate.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_calendar.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: lfpfunc.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_stdlib.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: lfptostr.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/*
* This file contains test for both mfptoa and mfptoms (which uses dolfptoa),
* since all these functions are very similar. It also tests ulfptoa, which is

View File

@ -1,3 +1,5 @@
/* $NetBSD: modetoa.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_stdlib.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: msyslog.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_stdlib.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: netof.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_stdlib.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: numtoa.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_stdlib.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: numtohost.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_stdlib.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: octtoint.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_stdlib.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: prettydate.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_stdlib.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: recvbuff.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "recvbuff.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: refidsmear.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
#include "config.h"
#include <ntp.h>

View File

@ -1,3 +1,5 @@
/* $NetBSD: refnumtoa.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
#include "config.h"
#include "ntp_net.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-a_md5encrypt.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-atoint.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-atouint.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-authkeys.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-buftvtots.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-calendar.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-caljulian.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-caltontp.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-calyearstart.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-clocktime.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-decodenetnum.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-hextoint.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-hextolfp.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-humandate.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-lfpfunc.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-lfptostr.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-modetoa.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-msyslog.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-netof.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-numtoa.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-numtohost.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-octtoint.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-prettydate.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-recvbuff.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-refidsmear.c,v 1.1.1.2 2015/07/10 13:11:13 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-refnumtoa.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-sfptostr.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

View File

@ -1,3 +1,5 @@
/* $NetBSD: run-socktoa.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====

Some files were not shown because too many files have changed in this diff Show More