X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fatexit.c;fp=functions%2Fstdlib%2Fatexit.c;h=0000000000000000000000000000000000000000;hb=a1f747e81dad0bb9897cb11c652403bb7bbf084c;hp=d9f0ee942b2ebd9e4267d79fc1baf564349cae86;hpb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;p=pdclib diff --git a/functions/stdlib/atexit.c b/functions/stdlib/atexit.c deleted file mode 100644 index d9f0ee9..0000000 --- a/functions/stdlib/atexit.c +++ /dev/null @@ -1,24 +0,0 @@ -/* ---------------------------------------------------------------------------- - * $Id$ - * ---------------------------------------------------------------------------- - * Public Domain C Library - http://pdclib.sourceforge.net - * This code is Public Domain. Use, modify, and redistribute at will. - * --------------------------------------------------------------------------*/ - -int atexit( void (*func) ( void ) ) { /* TODO */ }; - -/* PDPC code - unreviewed -{ - int x; - - for (x = 0; x < __NATEXIT; x++) - { - if (__userExit[x] == 0) - { - __userExit[x] = func; - return (0); - } - } - return (-1); -} -*/