mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-27 12:03:42 +08:00
74a1a8f8d1
(Logical change 1.305)
48 lines
1.7 KiB
C
48 lines
1.7 KiB
C
const char *EXEC_NAME = "";
|
|
const char *EXEC_VERSION= "0.0.1";
|
|
/*
|
|
* EXEC_NAME - Part of the Linux-NTFS project.
|
|
*
|
|
* Copyright (c) 2000-2004 Anton Altaparmakov
|
|
*
|
|
* Short description here.
|
|
*
|
|
* Anton Altaparmakov <aia21@cantab.net>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program (in the main directory of the Linux-NTFS distribution
|
|
* in the file COPYING); if not, write to the Free Software Foundation,
|
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
/*
|
|
* WARNING: This program might not work on architectures which do not allow
|
|
* unaligned access. For those, the program would need to start using
|
|
* get/put_unaligned macros (#include <asm/unaligned.h>), but not doing it yet,
|
|
* since NTFS really mostly applies to ia32 only, which does allow unaligned
|
|
* accesses. We might not actually have a problem though, since the structs are
|
|
* defined as being packed so that might be enough for gcc to insert the
|
|
* correct code.
|
|
*
|
|
* If anyone using a non-little endian and/or an aligned access only CPU tries
|
|
* this program please let me know whether it works or not!
|
|
*
|
|
* Anton Altaparmakov <aia21@cantab.net>
|
|
*/
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
return 0;
|
|
}
|
|
|