mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
atmain.C: remove
Not only is it C++-specific (and we no longer pretend to be compatible with C++), it's also z/OS-specific. It seems that access to z/OS for testing is not available to mere mortals.
This commit is contained in:
parent
08e5675345
commit
68037b8524
1 changed files with 0 additions and 38 deletions
|
@ -1,38 +0,0 @@
|
||||||
/***********************************************************************
|
|
||||||
* *
|
|
||||||
* This software is part of the ast package *
|
|
||||||
* Copyright (c) 1985-2011 AT&T Intellectual Property *
|
|
||||||
* Copyright (c) 2020-2021 Contributors to ksh 93u+m *
|
|
||||||
* and is licensed under the *
|
|
||||||
* Eclipse Public License, Version 1.0 *
|
|
||||||
* by AT&T Intellectual Property *
|
|
||||||
* *
|
|
||||||
* A copy of the License is available at *
|
|
||||||
* http://www.eclipse.org/org/documents/epl-v10.html *
|
|
||||||
* (with md5 checksum b35adb5213ca9657e911e9befb180842) *
|
|
||||||
* *
|
|
||||||
* Information and Software Systems Research *
|
|
||||||
* AT&T Research *
|
|
||||||
* Florham Park NJ *
|
|
||||||
* *
|
|
||||||
* Glenn Fowler <gsf@research.att.com> *
|
|
||||||
* David Korn <dgk@research.att.com> *
|
|
||||||
* Phong Vo <kpv@research.att.com> *
|
|
||||||
* *
|
|
||||||
***********************************************************************/
|
|
||||||
#if ! __MVS__
|
|
||||||
|
|
||||||
NoN(atmain)
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
extern "C" void _ast_init();
|
|
||||||
|
|
||||||
class Atmain_t
|
|
||||||
{
|
|
||||||
public: Atmain_t() { _ast_init(); }
|
|
||||||
};
|
|
||||||
|
|
||||||
static Atmain_t atmain();
|
|
||||||
|
|
||||||
#endif
|
|
Loading…
Reference in a new issue