psxhdrs: Fix spacing

This commit is contained in:
Joel Sherrill
2018-12-05 16:07:33 -06:00
parent 36e1b8204f
commit cbb08b6176
34 changed files with 926 additions and 926 deletions

View File

@@ -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

View File

@@ -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);
} }

View File

@@ -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);
} }

View File

@@ -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];