You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
318 B
21 lines
318 B
/* Modified: 2000 AlansFixes */
|
|
#include "ngspice/config.h"
|
|
#include "ngspice/ngspice.h"
|
|
#include "dup2.h"
|
|
|
|
#ifndef HAVE_DUP2
|
|
#include <fcntl.h>
|
|
|
|
dup2(int oldd, int newd)
|
|
{
|
|
#ifdef HAVE_FCNTL_H
|
|
close(newd);
|
|
#ifdef F_DUPFD
|
|
(void) fcntl(oldd, F_DUPFD, newd);
|
|
#endif
|
|
#endif
|
|
return 0;
|
|
}
|
|
#else
|
|
int Dummy_Symbol_2;
|
|
#endif
|