2000-04-27 22:03:57 +02:00
|
|
|
/**********
|
|
|
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
|
|
|
Author: 1985 Wayne A. Christopher, U. C. Berkeley CAD Group
|
|
|
|
|
**********/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Standard utility routines.
|
|
|
|
|
* Most moved to MISC/
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
2011-08-20 19:27:09 +02:00
|
|
|
#include <ngspice/ngspice.h>
|
|
|
|
|
#include <ngspice/cpstd.h>
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/* This might not be around. If not then forget about sorting. */
|
|
|
|
|
|
|
|
|
|
#ifndef HAVE_QSORT
|
|
|
|
|
#ifndef qsort
|
|
|
|
|
qsort() {}
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|