]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/qsort.c
Whitespace cleanups.
[pdclib] / functions / stdlib / qsort.c
index 30e01331f085775bcb0cd8881695c6d5293ba4ad..e26ea863cfa9e9f702236538921281ea7c7ab688 100644 (file)
@@ -33,7 +33,7 @@ static inline void memswp( char * i, char * j, size_t size )
 #define PUSH( base, limit ) stackptr[0] = base; stackptr[1] = limit; stackptr += 2
 #define POP( base, limit ) stackptr -= 2; base = stackptr[0]; limit = stackptr[1]
 /* TODO: Stack usage is log2( nmemb ) (minus what T shaves off the worst case).
-         Worst-case nmemb is platform dependent and should probably be 
+         Worst-case nmemb is platform dependent and should probably be
          configured through _PDCLIB_config.h.
 */
 #define STACKSIZE 64
@@ -128,7 +128,9 @@ void qsort( void * base, size_t nmemb, size_t size, int (*compar)( const void *,
 #endif
 
 #ifdef TEST
+
 #include "_PDCLIB_test.h"
+
 #include <string.h>
 #include <limits.h>