OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
my_exit.c File Reference
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

Go to the source code of this file.

Macros

#define _FCALL

Functions

void my_exit (int *i)
void my_exit_ (int *i)
void my_exit__ (int *i)
void _FCALL MY_EXIT (int *i)

Macro Definition Documentation

◆ _FCALL

#define _FCALL

Definition at line 26 of file my_exit.c.

Function Documentation

◆ MY_EXIT()

void _FCALL MY_EXIT ( int * i)

Definition at line 37 of file my_exit.c.

38{ my_exit(i); }
void my_exit(int *i)
Definition my_exit.c:28

◆ my_exit()

void my_exit ( int * i)

Definition at line 28 of file my_exit.c.

29{ exit(*i); }

◆ my_exit_()

void my_exit_ ( int * i)

Definition at line 31 of file my_exit.c.

32{ my_exit(i); }

◆ my_exit__()

void my_exit__ ( int * i)

Definition at line 34 of file my_exit.c.

35{ my_exit(i); }