summaryrefslogtreecommitdiffstats
path: root/bin/sh/machdep.h
diff options
context:
space:
mode:
Diffstat (limited to 'bin/sh/machdep.h')
-rw-r--r--bin/sh/machdep.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/sh/machdep.h b/bin/sh/machdep.h
index 97d82a9..2f2aea0 100644
--- a/bin/sh/machdep.h
+++ b/bin/sh/machdep.h
@@ -33,8 +33,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * @(#)machdep.h 8.1 (Berkeley) 5/31/93
- * $Id$
+ * @(#)machdep.h 8.2 (Berkeley) 5/4/95
+ * $Id: machdep.h,v 1.2 1994/09/24 02:57:43 davidg Exp $
*/
/*
@@ -48,5 +48,5 @@ union align {
char *cp;
};
-#define ALIGN(nbytes) ((nbytes) + sizeof(union align) - 1 &~ (sizeof(union align) - 1))
+#define ALIGN(nbytes) (((nbytes) + sizeof(union align) - 1) & ~(sizeof(union align) - 1))
#endif
OpenPOWER on IntegriCloud