forked from Imagelibrary/rtems
psxhdrs: Fix spacing
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
* @file
|
* @file
|
||||||
* @brief dlclose() API Conformance Test
|
* @brief dlclose() API Conformance Test
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* COPYRIGHT (c) 2018.
|
* COPYRIGHT (c) 2018.
|
||||||
* Himanshu Sekhar Nayak
|
* Himanshu Sekhar Nayak
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
* @file
|
* @file
|
||||||
* @brief dlerror() API Conformance Test
|
* @brief dlerror() API Conformance Test
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* COPYRIGHT (c) 2018.
|
* COPYRIGHT (c) 2018.
|
||||||
* Himanshu Sekhar Nayak
|
* Himanshu Sekhar Nayak
|
||||||
@@ -33,4 +34,5 @@
|
|||||||
errstr = dlerror();
|
errstr = dlerror();
|
||||||
|
|
||||||
return (errstr != NULL);
|
return (errstr != NULL);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
* @file
|
* @file
|
||||||
* @brief dlopen() API Conformance Test
|
* @brief dlopen() API Conformance Test
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* COPYRIGHT (c) 2018.
|
* COPYRIGHT (c) 2018.
|
||||||
* Himanshu Sekhar Nayak
|
* Himanshu Sekhar Nayak
|
||||||
@@ -26,15 +27,12 @@
|
|||||||
|
|
||||||
int test( void );
|
int test( void );
|
||||||
|
|
||||||
int result = 1;
|
|
||||||
|
|
||||||
int test( void )
|
int test( void )
|
||||||
{
|
{
|
||||||
void *filename;
|
void *filename;
|
||||||
|
|
||||||
filename = dlopen( "mylib.so", RTLD_LOCAL | RTLD_LAZY );
|
filename = dlopen( "mylib.so", RTLD_LOCAL | RTLD_LAZY );
|
||||||
(void) filename;
|
(void) filename;
|
||||||
result = 0;
|
|
||||||
|
|
||||||
return result;
|
return (filename != NULL);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,7 +29,6 @@ int test( void );
|
|||||||
|
|
||||||
int test( void )
|
int test( void )
|
||||||
{
|
{
|
||||||
|
|
||||||
iconv_t cd = iconv_open("ASCII", "UTF-8");
|
iconv_t cd = iconv_open("ASCII", "UTF-8");
|
||||||
char inbuf[10] = "string";
|
char inbuf[10] = "string";
|
||||||
char outbuf[10];
|
char outbuf[10];
|
||||||
|
|||||||
Reference in New Issue
Block a user