Merge pull request #23092 from webosbrew/feature/webOS
[xbmc.git] / xbmc / platform / android / bionic_supplement / bionic_supplement.h
blob3645eb0276a3986f4255152caf472b232ac471f1
1 /*
2 * Copyright (C) 2012-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 #include <stdio.h>
12 #ifdef __cplusplus
13 extern "C" {
14 #endif /* __cplusplus */
16 int rand_r (unsigned int *seed);
17 ssize_t getdelim(char **lineptr, size_t *n, int delimiter, FILE *stream);
19 #ifdef __cplusplus
21 #endif /* __cplusplus */