Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

_edt - EDT call

&pagelevel(4)&pagelevel

Definition

#include <stdlib.h>

void _edt(void);

_edt calls the BS2000 file editor EDT. Subsequently, when the file editor is terminated normally, the program continues at the next C statement that follows the _edt function call.

Note

Programs that call the _edt function require modules from the EDTLIB module library (under the $TSOS ID by default) during execution. A RESOLVE statement for this library must be issued when the modules are linked.

Example

#include <stdio.h>
#include <stdlib.h>
int main(void)
{
   _edt();
   printf("Return to the C program\n");
   return 0;
}