Index: pkg/fletch/lib/fletch.dart |
diff --git a/pkg/fletch/lib/fletch.dart b/pkg/fletch/lib/fletch.dart |
deleted file mode 100644 |
index 48b36cf6f299ec60220548fd39645845c952bc26..0000000000000000000000000000000000000000 |
--- a/pkg/fletch/lib/fletch.dart |
+++ /dev/null |
@@ -1,15 +0,0 @@ |
-// Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
-// for details. All rights reserved. Use of this source code is governed by a |
-// BSD-style license that can be found in the LICENSE.md file. |
- |
-/// Fletch utility package. |
-/// |
-/// This is a preliminary API. |
-library fletch; |
- |
-import 'dart:fletch.ffi'; |
-import 'package:ffi/ffi.dart'; |
- |
-final ForeignFunction _getVersion = ForeignLibrary.main.lookup('GetVersion'); |
- |
-String version() => cStringToString(_getVersion.pcall$0()); |