Removed iostream function calls, don't exist on vxWorks-68040

This commit is contained in:
MarkRivers
2012-02-11 00:01:30 +00:00
parent 5af8dc064d
commit 68737fa0c8
+2 -6
View File
@@ -79,10 +79,6 @@ Versions: Release 4-5 and higher.
LOSS OR DAMAGES.
*/
#include <iostream>
using std::cout;
using std::endl;
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
@@ -1402,7 +1398,7 @@ asynStatus XPSDisableAutoEnable(const char *XPSName)
pC = (XPSController*) findAsynPortDriver(XPSName);
if (!pC) {
cout << driverName << "::" << functionName << " Error port " << XPSName << "not found." << endl;
printf("%s:%s: Error port %s not found\n", driverName, functionName, XPSName);
return asynError;
}
@@ -1417,7 +1413,7 @@ asynStatus XPSNoDisableError(const char *XPSName)
pC = (XPSController*) findAsynPortDriver(XPSName);
if (!pC) {
cout << driverName << "::" << functionName << " Error port " << XPSName << "not found." << endl;
printf("%s:%s: Error port %s not found\n", driverName, functionName, XPSName);
return asynError;
}