summaryrefslogtreecommitdiff
path: root/src/time.c
blob: c0a5dff5d01c9856093a54a623ebbc7e110413f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Copyright 2014 Vincent Sanders <vince@netsurf-browser.org>
 *
 * This file is part of libnsutils.
 *
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 */

/**
 * \file
 * Time operation implementation
 */

#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>

#include "nsutils/time.h"

nserror nsu_nsu_getmonotonic_ms(uint64_t *current)
{
    return NSERROR_NOT_IMPLEMENTED;
}