summaryrefslogtreecommitdiffstats
path: root/sys-utils/sync.S
diff options
context:
space:
mode:
Diffstat (limited to 'sys-utils/sync.S')
-rw-r--r--sys-utils/sync.S24
1 files changed, 0 insertions, 24 deletions
diff --git a/sys-utils/sync.S b/sys-utils/sync.S
deleted file mode 100644
index 5b7fd82b2..000000000
--- a/sys-utils/sync.S
+++ /dev/null
@@ -1,24 +0,0 @@
-/* File:
- * sync.S
- * Compile:
- * gcc -nostdlib sync.S -o sync
- * Author:
- * Nick Holloway, with thanks to James Bonfield
- * Modified for ELF by Michael Shields
- * Rik Faith added __ASSEMBLY__ for gcc 2.5.8
- * Last Changed:
- * 1995-07-04
- */
-#include <sys/syscall.h>
-#ifndef __ASSEMBLY__
-#define __ASSEMBLY__
-#endif
-#include <linux/linkage.h>
-
- .text
-ENTRY(_start)
- movl $(SYS_sync),%eax /* sync () */
- int $0x80
- movl $(SYS_exit),%eax /* exit ( 0 ) */
- movl $0,%ebx
- int $0x80